{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "InternetMessageHeader", "type": "object", "description": "A key-value pair representing an Internet message header as defined by RFC 5322.", "properties": { "name": { "type": "string", "description": "The name of the message header." }, "value": { "type": "string", "description": "The value of the message header." } } }