Dow Jones Newsletters API

The Newsletters API from Dow Jones — 2 operation(s) for newsletters.

Operations 2

GET /newsletters Gets a list of Newsletters #
GET /newsletters/{id} Reading a Newsletter by ID #

Documentation

📖
Documentation
https://developer.dowjones.com/documents/site-docs-risk_and_compliance_apis-screening_and_monitoring_api-batch_screening_api
📖
Documentation
https://developer.dowjones.com/documents/site-docs-risk_and_compliance_apis-screening_and_monitoring_api-batch_screening_api_private_list
📖
Documentation
https://developer.dowjones.com/documents/site-docs-risk_and_compliance_apis-advanced-screening-and-monitoring-api
📖
Documentation
https://developer.dowjones.com/documents/site-docs-risk_and_compliance_apis-risk_and_compliance_2_0-risk_search_api
📖
Documentation
https://developer.dowjones.com/documents/site-docs-risk_and_compliance_apis-risk_and_compliance_2_0-risk_profiles_api-risk_and_compliance_profiles
📖
Documentation
https://developer.dowjones.com/documents/site-docs-risk_and_compliance_apis-risk_and_compliance_2_0-risk_taxonomy_api
📖
Documentation
https://developer.dowjones.com/documents/site-docs-risk_and_compliance_apis-risk_and_compliance_2_0-risk_profiles_api-profile_history_api
📖
Documentation
https://developer.dowjones.com/documents/site-docs-risk_and_compliance_apis-due_diligence_reports_api-risk_reports_api
📖
Documentation
https://developer.dowjones.com/documents/site-docs-risk_and_compliance_apis-third_party_api
📖
Documentation
https://developer.dowjones.com/documents/site-docs-newswires_apis-dow_jones_newswires_real_time_api-real_time_search_api
📖
Documentation
https://developer.dowjones.com/documents/site-docs-newswires_apis-dow_jones_newswires_top_stories_api-top_stories_api
📖
Documentation
https://developer.dowjones.com/documents/site-docs-newswires_apis-dow_jones_financial_calendars_api-financial_calendars_api
📖
Documentation
https://developer.dowjones.com/documents/site-docs-newswires_apis
📖
Documentation
https://developer.dowjones.com/documents/factiva_integration-factiva_workflow_toolkit-endpoints-get_article
📖
Documentation
https://developer.dowjones.com/documents/factiva_integration-factiva_workflow_toolkit-endpoints-newsletters-newsletters
📖
Documentation
https://developer.dowjones.com/documents/site-docs-factiva_apis-factiva_workflow_apis_rest-factiva_news_search-news_radar_api-news_radar

Specifications

Other Resources

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/dow-jones-newsletters-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

dow-jones-newsletters-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: 1.0.0
  title: DJ Factiva Newsletters API
servers:
- url: https://api.dowjones.com
tags:
- name: Newsletters
paths:
  /newsletters:
    get:
      tags:
      - Newsletters
      summary: Gets a list of Newsletters
      description: Gets a list of newsletters
      operationId: NewslettersRead
      parameters:
      - name: id
        in: query
        description: Get all newsletters for ID comma separated list (no spaces) in filter criteria. id=15,16,17
        required: false
        schema:
          type: string
      - name: filter[shared_status]
        in: query
        description: Get all newsletters for a shared status in filter criteria.
        required: false
        schema:
          type: array
          items:
            type: string
            enum:
            - User
            - Account
      - name: page[offset]
        description: Starting index into lists
        in: query
        required: false
        schema:
          type: integer
          format: int32
          default: 0
      - name: page[limit]
        description: Max number of newsletters to return
        in: query
        required: false
        schema:
          type: integer
          format: int32
          default: 10
      - name: sort
        description: Sort by CreatedDate, LastModified, Name; use '-' for descending
        in: query
        schema:
          type: string
      - name: max_editions
        description: Max number of editions to return
        in: query
        required: false
        schema:
          type: integer
          format: int32
      - name: max_deliveries
        description: Max number of delivery to return
        in: query
        required: false
        schema:
          type: integer
          format: int32
      - name: parts
        description: Parts to retrieve
        in: query
        required: false
        schema:
          type: array
          items:
            type: string
            enum:
            - ExtendedDetails
            - Editions
            - Sections
            - DeliveryInfo
            - UpdateStatus
      - name: is_view_newsletter
        description: Returns View Newsletter List
        in: query
        required: false
        schema:
          type: boolean
      - name: external_reader_id
        description: External reader ID (it is applied only if 'is_view_newsletter' is true )
        in: query
        schema:
          type: string
      responses:
        '200':
          description: Success
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/newsletters_list'
        '400':
          description: Bad Request - Incorrect Parameters
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/error_response'
        '500':
          description: Internal Server Error - Server encountered an unexpected condition
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/error_response'
        '503':
          $ref: '#/components/schemas/503'
      security:
      - bearerAuth: []
  /newsletters/{id}:
    get:
      tags:
      - Newsletters
      summary: Reading a Newsletter by ID
      description: Get newsletter by id
      operationId: NewsletterReadById
      parameters:
      - name: id
        description: Newsletter ID
        in: path
        required: true
        schema:
          type: integer
          format: int64
      - name: tkn
        description: Encrypted identity
        in: query
        required: false
        schema:
          type: string
      - name: max_editions
        description: Max number of editions to return
        in: query
        required: false
        schema:
          type: integer
          format: int32
      - name: max_deliveries
        description: Max number of delivery to return
        in: query
        required: false
        schema:
          type: integer
          format: int32
      - name: parts
        description: Parts to retrieve
        in: query
        required: false
        schema:
          type: array
          items:
            type: string
            enum:
            - ExtendedDetails
            - Editions
            - Sections
            - DeliveryInfo
            - IncludeContent
      responses:
        '200':
          description: Success
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/newsletter'
        '400':
          description: Bad Request - Incorrect Parameters
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/error_response'
        '404':
          $ref: '#/components/schemas/404'
        '500':
          description: Internal Server Error - Server encountered an unexpected condition
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/error_response'
        '503':
          $ref: '#/components/schemas/503'
      security:
      - bearerAuth: []
components:
  schemas:
    section:
      type: object
      description: Section
      properties:
        name:
          type: string
          description: Name
        position:
          type: integer
          format: int32
          description: Position
        items:
          type: array
          items:
            type: object
            anyOf:
            - $ref: '#/components/schemas/article_details'
            - $ref: '#/components/schemas/link_details'
            - $ref: '#/components/schemas/rss_details'
            - $ref: '#/components/schemas/chart_details'
          description: Items
        subsections:
          type: array
          items:
            $ref: '#/components/schemas/subsection'
          description: Subsections
        images:
          type: array
          items:
            $ref: '#/components/schemas/image'
          description: Elements
    chart_details:
      type: object
      properties:
        item_id:
          type: number
          example: 12345
          description: Item identity
        item_type:
          type: string
          description: Item Type
          example: Chart
        title:
          type: string
          description: Title
        flag:
          type: string
          enum:
          - Unspecified
          - Hot
          - MustRead
          - New
          description: Flag
        comments:
          type: string
          description: Comments
        description:
          type: string
          description: Description
        chart_image_id:
          type: integer
          format: int64
          description: Chart Image Item ID
        graph_type:
          type: string
          enum:
          - Line
          - Pie
          - HorizontalBar
          - VerticalBar
          - StackedBar
          - Overlay
          - Tagcloud
          description: Graph Type
        date_range:
          $ref: '#/components/schemas/chart_dates'
        position:
          type: integer
          format: int32
          description: Position
          example: 3
        image_url:
          type: string
          description: URL to binary service
      description: Chart Details
    self_link:
      type: object
      properties:
        self:
          type: string
          description: link to this single resourceType (self)
          example: https://localhost:8080/assets/newsletters/1234567890
    chart_dates:
      type: object
      properties:
        from:
          type: string
          description: Start Date
          example: '1997-07-16'
        to:
          type: string
          description: End Date
          example: '1997-07-16'
      description: Chart Dates
    external_account_credentials:
      type: object
      properties:
        account_id:
          type: string
        namespace:
          type: string
    content_alt_images:
      type: array
      items:
        type: object
        properties:
          id:
            type: string
          name:
            type: string
          width:
            type: number
          height:
            type: number
          size_code:
            type: string
    edition_relationship_link:
      type: object
      properties:
        related:
          type: string
          description: link to the edition relationship
          example: https://localhost:8080/assets/newsletters/1234567890/editions
    newsletter_type:
      type: string
      description: Resource type
      example: newsletters
    '503':
      description: Service Unavailable - Server is currently unable to handle the request
    newsletter_delivery_type:
      type: string
      description: Resource type
      example: deliveries
    newsletter_included:
      type: array
      items:
        type: object
        anyOf:
        - properties:
            id:
              $ref: '#/components/schemas/common_id'
            type:
              $ref: '#/components/schemas/newsletter_edition_type'
            attributes:
              $ref: '#/components/schemas/resource_edition_item'
            links:
              $ref: '#/components/schemas/self_editions_link'
        - properties:
            id:
              $ref: '#/components/schemas/common_id'
            type:
              $ref: '#/components/schemas/newsletter_delivery_type'
            attributes:
              $ref: '#/components/schemas/delivery_info'
            links:
              $ref: '#/components/schemas/self_deliveries_link'
        - $ref: '#/components/schemas/content_item'
    self_deliveries_link:
      type: object
      properties:
        self:
          type: string
          description: link to this single resourceType (self)
          example: https://localhost:8080/assets/newsletters/9876/deliveries/1234
    resource_edition_item:
      type: object
      properties:
        name:
          type: string
          description: Name
        parent_workspace_id:
          type: number
          example: 1234
        last_modified_date:
          type: string
          description: Last Modified Date
          example: '1997-07-16T19:20:30+00:00'
        email_sent_date:
          type: string
          description: Email Sent Date
          example: '1997-07-16T19:20:30+00:00'
        document_date:
          type: string
          example: '1997-07-16T19:20:30+00:00'
        is_sent:
          type: boolean
      description: Edition
    content_item_meta_code_sets_code:
      type: object
      properties:
        code:
          type: string
        code_scheme:
          type: string
        chartingsymbol:
          type: string
        symbol:
          type: string
        significance:
          type: string
        descriptor:
          type: string
    list_links:
      type: object
      properties:
        self:
          type: string
          example: https://localhost:8080/assets/newsletters/
        first:
          type: string
          example: https://localhost:8080/assets/newsletters/?page[offset]=0&page[limit]=20
        prev:
          type: string
          example: https://localhost:8080/assets/newsletters/?page[offset]=0&page[limit]=20
        next:
          type: string
          example: https://localhost:8080/assets/newsletters/?page[offset]=40&page[limit]=20
        last:
          type: string
          example: https://localhost:8080/assets/newsletters/?page[offset]=210
    article_details:
      type: object
      properties:
        item_id:
          type: number
          example: 12345
          description: Item identity
        item_type:
          type: string
          description: Item Type
          example: Article
        drn:
          type: string
          description: DRN
        original_doc_id:
          type: string
          description: Original Document Id (ex. accession_number)
        flag:
          type: string
          enum:
          - Unspecified
          - Hot
          - MustRead
          - New
          description: Flag
        comments:
          type: string
          description: Comments
        content_category:
          type: string
          enum:
          - Unspecified
          - External
          - Publication
          - Website
          - Picture
          - Multimedia
          - Blog
          - Board
          - Internal
          - Summary
          - CustomerDoc
          description: Content Category
        related_article_drn:
          type: string
          description: DRN
        related_article_original_doc_id:
          type: string
          description: Original Document Id (ex. accession_number)
        position:
          type: integer
          format: int32
          description: Position
          example: 0
      description: Article Details
    rss_details:
      type: object
      properties:
        item_id:
          type: number
          example: 12345
          description: Item identity
        item_type:
          type: string
          description: Item Type
          example: RSS
        title:
          type: string
          description: Title
        description:
          type: string
          description: Description
        flag:
          type: string
          enum:
          - Unspecified
          - Hot
          - MustRead
          - New
          description: Flag
        comments:
          type: string
          description: Comments
        url:
          type: string
          description: URL
        source_name:
          type: string
          description: Source Name
        author:
          type: string
          description: Author
        publication_date:
          type: string
          description: Publication Date
          example: '1997-07-16'
        language:
          type: string
          description: Language
          example: en
        body:
          type: string
          description: Body
        position:
          type: integer
          format: int32
          description: Position
          example: 2
    recipient:
      type: object
      properties:
        date_format:
          type: string
          description: Date Format
        date_language:
          type: string
          description: Date Language
          example: en
        email_format:
          type: string
          description: Email Format
        to:
          type: array
          items:
            type: string
          description: To List
        cc:
          type: array
          items:
            type: string
          description: Cc List
        bcc:
          type: array
          items:
            type: string
          description: Bcc List
        reply_to:
          type: object
          properties:
            email_address:
              type: string
            display_name:
              type: string
    image:
      type: object
      properties:
        image_id:
          type: string
          description: Image id
        image_type:
          type: string
          enum:
          - Internal
          - External
          description: Image type
        position:
          type: integer
          format: int32
          description: Position
        drn:
          type: string
          description: DRN
        original_doc_id:
          type: string
          description: Original Document Id (ex. accession_number)
        image_url:
          type: string
          description: URL to binary service
    content_text_base:
      type: object
      properties:
        text:
          type: string
    content:
      type: object
      properties:
        type:
          type: string
        colspan:
          type: number
        display:
          type: string
        paragraph_type:
          type: string
        text:
          type: string
        ordered:
          type: boolean
        alternate_text:
          type: string
        alt_images:
          $ref: '#/components/schemas/content_alt_images'
        caption:
          $ref: '#/components/schemas/content_text_base'
        credit:
          type: string
        media_type:
          type: string
        name:
          type: string
        uri:
          type: string
        slug:
          type: string
        width:
          type: number
        height:
          type: number
        api:
          type: string
        sub_type:
          type: string
        fragment_id:
          type: string
        icon:
          type: string
        link_type:
          type: string
        external:
          type: boolean
        ref:
          type: string
        entity_type:
          type: string
        background_info:
          type: string
        code:
          type: string
        code_scheme:
          type: string
        significance:
          type: string
        ticker:
          type: string
        emphasis_type:
          type: string
    content_body:
      type: array
      items:
        type: object
        properties:
          type:
            type: string
          display:
            type: string
          paragraph_type:
            type: string
          text:
            type: string
          content:
            $ref: '#/components/schemas/content_list'
          sub_type:
            type: string
          fragment_id:
            type: string
          alternate_text:
            type: string
          alt_images:
            $ref: '#/components/schemas/content_alt_images'
          caption:
            $ref: '#/components/schemas/content_text_base'
          credit:
            type: string
          media_type:
            type: string
          name:
            type: string
          uri:
            type: string
          slug:
            type: string
          width:
            type: number
          height:
            type: number
          format:
            type: string
          inset_type:
            type: string
          ref:
            type: string
          ordered:
            type: boolean
          content_encoding:
            type: string
          value:
            type: string
    self_editions_link:
      type: object
      properties:
        self:
          type: string
          description: link to this single resourceType (self)
          example: https://localhost:8080/assets/newsletters/9876/editions/1234
    subsection:
      type: object
      description: Section
      properties:
        name:
          type: string
          description: Name
        position:
          type: integer
          format: int32
          description: Position
        items:
          type: array
          items:
            type: object
            anyOf:
            - $ref: '#/components/schemas/article_details'
            - $ref: '#/components/schemas/link_details'
            - $ref: '#/components/schemas/rss_details'
            - $ref: '#/components/schemas/chart_details'
          description: Items
        images:
          type: array
          items:
            $ref: '#/components/schemas/image'
          description: Elements
    newsletter_included_list:
      type: array
      items:
        type: object
        anyOf:
        - properties:
            id:
              $ref: '#/components/schemas/common_id'
            type:
              $ref: '#/components/schemas/newsletter_edition_type'
            attributes:
              $ref: '#/components/schemas/resource_edition_item'
            links:
              $ref: '#/components/schemas/self_editions_link'
        - properties:
            id:
              $ref: '#/components/schemas/common_id'
            type:
              $ref: '#/components/schemas/newsletter_delivery_type'
            attributes:
              $ref: '#/components/schemas/delivery_info'
            links:
              $ref: '#/components/schemas/self_deliveries_link'
    content_item_attribute:
      type: object
      properties:
        content_type:
          type: string
          example: Article
        art:
          $ref: '#/components/schemas/content_text_base'
        associations:
          type: object
          properties:
            root_id:
              type: string
            parent_id:
              type: string
            parent_id_ref:
              type: string
        authors:
          type: array
          items:
            type: object
            properties:
              full_name:
                type: string
              topic_id:
                type: string
        best_date:
          type: string
        best_time:
          type: string
        body:
          $ref: '#/components/schemas/content_body'
        byline:
          $ref: '#/components/schemas/content_text_base'
        column_name:
          type: string
        contact:
          $ref: '#/components/schemas/content_text_base'
        content_status:
          type: string
        copyright:
          $ref: '#/components/schemas/content_text_base'
        corrections:
          type: array
          items:
            type: object
            properties:
              text:
                type: string
              content:
                $ref: '#/components/schemas/content_list'
        credit:
          $ref: '#/components/schemas/content_text_base'
        headline:
          $ref: '#/components/schemas/content_headline'
        live_date:
          type: string
        live_time:
          type: string
        load_date:
          type: string
        load_time:
          type: string
        modification_date:
          type: string
        modification_time:
          type: string
        notes:
          $ref: '#/components/schemas/content_text_base'
        page:
          type: string
        publication_date:
          type: string
        publication_time:
          type: string
        publisher:
          type: object
          properties:
            code:
              type: string
            name:
              type: string
            group_code:
              type: string
            group_name:
              type: string
        section_name:
          $ref: '#/components/schemas/content_text_base'
        seo_id:
          type: string
        snippet:
          type: object
          properties:
            content:
              type: array
              items:
                $ref: '#/components/schemas/content_text_base'
        summary:
          type: object
          properties:
            destination_type:
              type: string
            byline:
              $ref: '#/components/schemas/content_text_base'
            headline:
              $ref: '#/components/schemas/content_headline'
            body:
              $ref: '#/components/schemas/content_body'
            pages:
              type: array
              items:
                type: string
            related_links:
              type: array
              items:
                type: object
                properties:
                  text:
                    type: string
                  content:
                    $ref: '#/components/schemas/content_list'
            variant:
              type: string
        upstream_origin:
          type: string
        upstream_origin_id:
          type: string
        volume:
          type: string
        bytes:
          type: number
        external:
          type: boolean
        height:
          type: number
        width:
          type: number
        id_ref:
          type: string
        size_code:
          type: string
        is_responsive:
          type: boolean
        mime_type:
          type: string
        slug:
          type: string
        sub_type:
          type: string
    link_details:
      type: object
      properties:
        item_id:
          type: number
          example: 12345
          description: Item identity
        item_type:
          type: string
          description: Item Type
          example: Link
        title:
          type: string
          description: Title
        description:
          type: string
          description: Description
        flag:
          type: string
          enum:
          - Unspecified
          - Hot
          - MustRead
          - New
          description: Flag
        comments:
          type: string
          description: Comments
        url:
          type: string
          description: URL
        source_name:
          type: string
          description: Source Name
        author:
          type: string
          description: Author
        publication_date:
          type: string
          description: Publication Date
          example: '1997-07-16'
        language:
          type: string
          description: Language
          example: en
        body:
          type: string
          description: Body
        position:
          type: integer
          format: int32
          description: Position
          example: 1
        type:
          type: string
          enum:
          - Url
          - DocUrl
          - RssHeadlineUrl
    common_id:
      type: string
      example: '1234'
    newsletter_attributes:
      type: object
      properties:
        name:
          type: string
          description: Name
        token:
          type: string
          description: Token
        shared_status:
          type: string
          enum:
          - User
          - Account
          - Factiva
          description: Share Status
        access_scope:
          type: string
          enum:
          - Personal
          - Account
        is_owner:
          type: boolean
        is_online_view_group_assignment:
          type: boolean
          description: Online View Group Assignment
        total_editions:
          type: number
        user_type:
          type: string
          enum:
          - Account
          - Group
          - User
        details:
          $ref: '#/components/schemas/newsletter_details'
        current_update_status:
          $ref: '#/components/schemas/update_status'
        sections:
          type: array
          items:
            $ref: '#/components/schemas/section'
          description: Sections
    audience:
      type: object
      properties:
        audience_options:
          type: string
          enum:
          - InternalAccount
          - OutsideAccount
          - TimeToLive_Proxy
          - ExternalReader
          - ExternalAccount
          - ERPlusExternalAccount
          - TTLPlusExternalAccount
        proxy_credentials:
          type: object
          properties:
            authentication_scheme:
              type: string
              enum:
              - UserId
              - Email
            user_id:
              type: string
            email_id:
              type: string
            namespace:
              type: string
            password:
              type: string
            encrypted_token:
              type: string
        profile_id:
          type: string
        external_account_credentials:
          $ref: '#/components/schemas/external_account_credentials'
    newsletter_edition_type:
      type: string
      description: Resource type
      example: editions
    delivery_relationship_link:
      type: object
      properties:
        related:
          type: string
          description: link to the delivery relationship
          example: https://localhost:8080/assets/newsletters/1234567890/deliveries
    update_status:
      type: object
      properties:
        is_updating:
          type: boolean
          description: Is Updating
        start_date_time:
          type: string
          description: Update Start Date Time
          example: '1997-07-16T19:20:30+00:00'
      description: Update Status
    '404':
      description: Newsletter Not Found
    delivery_info:
      type: object
      description: Delivery Info
      properties:
        subject:
          type: string
          description: Delivery Subject
        message:
          type: string
          description: Delivery Message
        output_format:
          type: string
          enum:
          - None
          - HtmlEmailBody
          - PlainTextEmailBody
          - HtmlAttachmentOnly
          - RtfAttachmentOnly
          - PdfAttachmendOnly
          - DocxAttachmentOnly
          - Feed
          description: Output Format
        attachment_type:
          type: string
          enum:
          - None
          - Pdf
          - Docx
          - Rtf
          - Html
          description: Attachment Type
        attachment_template_id:
          type: integer
          format: int64
          description: Attachment Template Id
        has_newsletter_attachment:
          type: boolean
          description: Add Newsletter Attachment
        has_date_to_subject_appended:
          type: boolean
          description: Append Date To Subject
        recipient:
          $ref: '#/components/schemas/recipient'
    links:
      type: object
      properties:
        self:
          type: string
    content_item_meta_code_sets:
      type: array
      items:
        type: object
        properties:
          id:
            type: string
          type:
            type: string
          codes:
            type: array
            items:
              $ref: '#/components/schemas/content_item_meta_code_sets_code'
    content_item:
      type: object
      properties:
        id:
          type: string
        type:
          type: string
          example: content
        links:
          $ref: '#/components/schemas/links'
        meta:
          $ref: '#/components/schemas/content_item_meta'
        attributes:
          $ref: '#/components/schemas/content_item_attribute'
    content_list:
      type: array
      items:
        $ref: '#/components/schemas/content'
    newsletter_details:
      type: object
      properties:
        title:
          type: string
          description: Title
        summary:
          type: string
          description: Summary
        is_table_of_contents_shown:
          type: boolean
          description: Show Table Of Contents
        has_articles_included:
          type: boolean
          description: Include Articles
        has_included_source_names:
          type: boolean
          description: Include Source Names
        is_date_displayed:
          type: boolean
          description: Display Date
        is_snippet_included:
          type: boolean
          description: Include Snippet
        is_published_date_default:
          type: boolean
          description: Is Published Date Default
        additional_dateline_text:
          type: string
          description: Dateline
        publication_date:
          type: string
          description: Publication Date
          example: '1997-07-16'
        additional_information:
          type: string
          description: Additional Information
        footer:
          type: string
          description: Footer Information
        created_by:
          type: string
          description: Created By
        created_by_namespace:
          type: string
        created_by_account_id:
          type: string
        created_by_is_active:
          type: boolean
        created_date_time:
          type: string
          description: Created Date
          example: '1997-07-16T19:20:30+00:00'
        last_modified_by:
          type: string
          description: Last Modified by
        last_modified_by_namespace:
          type: string
        last_modified_by_account_id:
          type: string
        last_modified_by_is_active:
          type: boolean
        last_modified_date_time:
          type: string
          description: Last Modified Date
          example: '1997-07-16T19:20:30+00:00'
        large_masthead:
          type: string
          description: Large Masthead
        small_masthead:
          type: string
          description: Small Masthead
        is_edition_archive_view_enabled:
          type: boolean
          description: Enable Edition Archive View
        is_subscribe_link_included:
          type: boolean
          description: Include Subscribe Link
        is_newsletter_image_enabled:
          type: boolean
          description: Enable Newsletter Image
        is_full_text_enabled:
          type: boolean
          description: Enable Full Text
        is_auto_prune_enabled:
          type: boolean
          description: Auto Pr

# --- truncated at 32 KB (41 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/dow-jones/refs/heads/main/openapi/dow-jones-newsletters-api-openapi.yml