A normalized metadata tag used to filter and match PR outlets, people, and roles.

interface PrTag {
    created_at?: null | string;
    description?: null | string;
    id: string;
    label: string;
    metadata?: Record<string, any>;
    namespace: string;
    pivot?: {
        confidence?: null | number;
        metadata?: null | Record<string, any>;
        source?: null | string;
        source_link_id?: null | string;
        verified_at?: null | string;
    };
    slug: string;
    updated_at?: null | string;
}

Properties

created_at?: null | string
description?: null | string
id: string
label: string
metadata?: Record<string, any>
namespace: string
pivot?: {
    confidence?: null | number;
    metadata?: null | Record<string, any>;
    source?: null | string;
    source_link_id?: null | string;
    verified_at?: null | string;
}

Type declaration

  • Optional confidence?: null | number
  • Optional metadata?: null | Record<string, any>
  • Optional source?: null | string
  • Optional source_link_id?: null | string
  • Optional verified_at?: null | string
slug: string
updated_at?: null | string

Generated using TypeDoc