{"_self":{"principle":"Self-explaining payload — no external context required. This _self block describes what you are reading and where to look next.","widget":"article_bundle","feature":"bundle","name":"LLM article bundle","what":"Paste-ready package: body + claims + sources + voxels + provenance + manifest + constitution.","contains":"body, claims, sources, voxels, provenance, question graph, constitution, llm_manifest","slug":"oip-what-is-a-queue","urls":{"read":"https://miscsubjects.com/api/articles/oip-what-is-a-queue/bundle?format=markdown"},"how_to_use":"Paste into any LLM. Read §SELF first. Write back via ingest or claim endpoints in llm_manifest.","write":null,"imessage":null,"router_tag":null,"proof_chain":[{"step":1,"claim":"Articles are voxel graphs of tiered claims, not prose blobs.","verify":"https://miscsubjects.com/api/articles/constitution"},{"step":2,"claim":"Claims link to hash-chained sources via source_ids.","verify":"https://miscsubjects.com/api/articles/oip-what-is-a-queue/sources"},{"step":3,"claim":"Ask reads topology; ingest/claim append to ledger.","verify":"https://miscsubjects.com/api/protocol"},{"step":4,"claim":"Models queue growth: populate → collaborate → repair → reflex.","verify":"https://miscsubjects.com/api/protocol/grow"},{"step":5,"claim":"Graph proves its own shape (reflex) and $/claim (yield).","verify":"https://miscsubjects.com/graph.html?layer=reflex"},{"step":6,"claim":"Full feature index + _explain on every API response.","verify":"https://miscsubjects.com/api/articles/system-map"}],"related_features":[{"id":"topology","name":"Article topology","what":"Claims, sources, anecdotes, user reports, related embeds, question graph slice — for ask/ROUTER.","urls":{"read":"https://miscsubjects.com/api/articles/oip-what-is-a-queue/topology"}},{"id":"voxels","name":"Voxel graph","what":"Claims as atoms, sources as edges (supported_by, posted_by). Per-claim provenance.","urls":{"read":"https://miscsubjects.com/api/articles/oip-what-is-a-queue/voxels","write":"https://miscsubjects.com/api/protocol/claim"}},{"id":"ask","name":"Ask protocol","what":"Answer only from topology; creates question_node with gaps and ingest_hint.","urls":{"read":"https://miscsubjects.com/api/articles/oip-what-is-a-queue/prompts","write":"https://miscsubjects.com/api/protocol/ask"}},{"id":"ingest","name":"Ingest protocol","what":"Parse pasted evidence → source ledger + claims + evidence_ingest node.","urls":{"write":"https://miscsubjects.com/api/protocol/ingest"}},{"id":"claim_post","name":"Claim post protocol","what":"Prompt-injection style POST — one claim voxel with who_claims + posted_by.","urls":{"read":"https://miscsubjects.com/api/articles/oip-what-is-a-queue/voxels","write":"https://miscsubjects.com/api/protocol/claim"}},{"id":"llm_manifest","name":"LLM manifest","what":"Machine-readable read/write contract for external LLMs.","urls":{"read":"https://miscsubjects.com/api/articles/llm-manifest"}}],"system_map":"https://miscsubjects.com/api/articles/system-map","system_map_markdown":"https://miscsubjects.com/api/articles/system-map?format=markdown","not_medical_advice":true},"_explain":{"feature":"bundle","name":"LLM article bundle","what":"Paste-ready package: body + claims + sources + voxels + provenance + manifest + constitution.","why":"Every feature is auditable collective intelligence","how":"Paste into any LLM. Read §SELF first. Write back via ingest or claim endpoints in llm_manifest.","model":null,"verifies":null,"urls":{"read":"https://miscsubjects.com/api/articles/oip-what-is-a-queue/bundle?format=markdown"},"imessage":null,"router":null,"related":[{"id":"topology","what":"Claims, sources, anecdotes, user reports, related embeds, question graph slice — for ask/ROUTER."},{"id":"voxels","what":"Claims as atoms, sources as edges (supported_by, posted_by). Per-claim provenance."},{"id":"ask","what":"Answer only from topology; creates question_node with gaps and ingest_hint."},{"id":"ingest","what":"Parse pasted evidence → source ledger + claims + evidence_ingest node."},{"id":"claim_post","what":"Prompt-injection style POST — one claim voxel with who_claims + posted_by."},{"id":"llm_manifest","what":"Machine-readable read/write contract for external LLMs."}],"not_medical_advice":true},"bundle_version":1,"generated_at":"2026-07-04T22:32:43.070Z","slug":"oip-what-is-a-queue","title":"What is a Queue","url":"https://miscsubjects.com/a/oip-what-is-a-queue","register":"oip_protocol","tags":["oip","protocol"],"posted_at":"2026-07-04T18:31:10.516Z","updated_at":"2026-07-04T19:01:11.910Z","body":"# What is a Queue\n\n## What It Is\n\nA queue is an ordered collection that enforces **FIFO** — First In, First Out. The first element added is the first element removed. It is a **linear data structure** where insertions happen at one end (the **tail** or **rear**) and deletions happen at the other end (the **head** or **front**).\n\nIn the simplest terms: a queue is a line. You join at the back, you leave from the front. No one cuts. No one jumps.\n\n---\n\n## Why It Matters\n\nQueues are everywhere. Every operating system uses them to schedule processes. Every network router uses them to manage packet flow. Every web server uses them to handle incoming requests. Every printer uses them to sequence print jobs. Every message broker — from RabbitMQ to Kafka to SQS — is, at its core, a queue.\n\nBut queues matter for a deeper reason. They encode **fairness**. A queue enforces a deterministic order on a chaotic world. When ten thousand requests hit your server simultaneously, a queue says: *\"I will process you in the order you arrived. No favorites. No exceptions.\"* This is the foundational contract of queueing theory — the mathematical discipline that governs traffic flow, telecommunications, and hospital emergency room triage.\n\nA queue is also the canonical example of **stateful interaction** with a system. Unlike a stateless HTTP request, a queue operation implies history. The result of a `dequeue` depends on every `enqueue` that preceded it. This makes queues a natural fit for **auditable systems**: the entire sequence of operations is a log, and that log is a **single source of truth**.\n\n---\n\n## How It Works\n\n### The Core Operations\n\nA queue has two essential operations and two auxiliary operations:\n\n| Operation | Name | Action | Time Complexity |\n|-----------|------|--------|-----------------|\n| `enqueue(x)` | Push | Add element `x` to the tail | O(1) |\n| `dequeue()` | Pop | Remove and return the element at the head | O(1) |\n| `peek()` / `front()` | Peek | Return the element at the head without removing it | O(1) |\n| `isEmpty()` | Check | Return whether the queue contains any elements | O(1) |\n\n### Step-by-Step: Enqueue and Dequeue\n\n**Enqueue** (adding an element):\n1. Create a new node containing the data.\n2. Set the new node's `next` pointer to `null`.\n3. If the queue is empty, set both `head` and `tail` to this new node.\n4. Otherwise, set the current `tail.next` to the new node, then update `tail` to the new node.\n5. Increment the size counter.\n\n**Dequeue** (removing an element):\n1. If the queue is empty, return an error (or `null`).\n2. Store the data from the `head` node.\n3. Update `head` to point to `head.next`.\n4. If `head` is now `null`, set `tail` to `null` as well (queue is now empty).\n5. Decrement the size counter.\n6. Return the stored data.\n\n### Implementation: Linked List vs. Array\n\n| Aspect | Linked List | Circular Array |\n|--------|-------------|----------------|\n| Memory | Dynamic allocation, pointer overhead | Fixed or resizable block, contiguous |\n| Cache locality | Poor (nodes scattered in memory) | Excellent (elements adjacent) |\n| Resizing | Automatic, but allocator overhead | Requires explicit reallocation |\n| Worst-case dequeue | O(1) | O(1) |\n| Worst-case enqueue | O(1) | O(1) amortized, O(n) if resize |\n\nFor high-performance systems, **circular arrays** (ring buffers) are preferred. For systems with unpredictable memory patterns, **linked lists** are preferred. The Linux kernel's `kfifo` is a circular buffer. Most language standard library queues (Python's `collections.deque`, Java's `ArrayDeque`) use a circular array approach.\n\n---\n\n## The Contract\n\nA queue satisfies the following formal interface. Any implementation that deviates from this contract is not a queue; it is a different data structure.\n\n```\ninterface Queue<T> {\n    // Returns true if the queue contains no elements.\n    isEmpty(): boolean\n\n    // Returns the number of elements currently in the queue.\n    size(): integer\n\n    // Adds element x to the tail of the queue.\n    // Postcondition: size() == old size() + 1\n    // Postcondition: the element at the tail is x\n    enqueue(x: T): void\n\n    // Removes and returns the element at the head of the queue.\n    // Precondition: isEmpty() == false\n    // Postcondition: size() == old size() - 1\n    // Returns: the element that was at the head\n    dequeue(): T\n\n    // Returns the element at the head without removing it.\n    // Precondition: isEmpty() == false\n    peek(): T\n}\n```\n\n### Invariants\n\n- **FIFO Order**: For any two elements `a` and `b`, if `a` was enqueued before `b`, then `a` must be dequeued before `b`. This is the **defining invariant**. Without it, the structure is not a queue.\n- **Monotonic Size**: `size()` never decreases on `enqueue` and never increases on `dequeue`.\n- **Head-Tail Consistency**: If `size() > 0`, `head` and `tail` must point to valid elements. If `size() == 0`, `head` and `tail` must both be `null` (or equivalent empty state).\n- **Determinism**: Given the same sequence of operations, the queue must produce the same sequence of dequeued elements, regardless of internal implementation.\n\n---\n\n## Real Examples\n\n### 1. Operating System Process Scheduling\n\nEvery operating system maintains a **ready queue** of processes waiting for CPU time. When a process exhausts its time slice, it is enqueued at the tail. The scheduler dequeues from the head to select the next process to run. Linux's Completely Fair Scheduler (CFS) uses a red-black tree, but the underlying runqueue for each CPU is a queue-based mechanism. This is how your system ensures no single process starves the others.\n\n### 2. Network Packet Buffers (Routers)\n\nWhen a network router receives packets faster than it can forward them, it enqueues them in a **packet buffer**. The router dequeues packets in FIFO order for transmission. If the buffer fills beyond its limit, packets are dropped. This is **tail drop**, the simplest queue management algorithm. More sophisticated systems use **RED (Random Early Detection)** or **CoDel** to drop packets before the queue is full, preventing **bufferbloat** — the phenomenon where excessive queueing delays destroy real-time applications like video calls.\n\n### 3. Print Job Spooling\n\nA printer can only handle one job at a time. When you send a document to print, your computer enqueues it in the **print spooler**. The printer driver dequeues jobs one by one. Without the queue, your print job would collide with your coworker's print job, and the printer would produce garbage. The queue is the **serializing agent** that makes a shared resource usable by multiple concurrent users.\n\n### 4. Message Brokers (RabbitMQ, Kafka, SQS)\n\nIn distributed systems, services communicate asynchronously via message queues. A service produces a message (enqueue), and a consumer service reads it (dequeue). This decouples the producer from the consumer. The producer does not need to know if the consumer is online. The consumer does not need to know when the message was sent. The queue is the **boundary object** that allows independent scaling of both sides.\n\n### 5. BFS Graph Traversal\n\nThe Breadth-First Search algorithm uses a queue to explore nodes level by level. Starting from a source node, you enqueue all its neighbors. Then you dequeue a node, enqueue its unvisited neighbors, and repeat. This guarantees that the shortest path (in unweighted graphs) is found first. Without a queue, you cannot implement BFS; without BFS, you cannot solve shortest-path problems, web crawlers, or social network friend recommendations.\n\n---\n\n## Common Mistakes\n\n### 1. Confusing a Queue with a Stack\n\nA stack is LIFO (Last In, First Out). A queue is FIFO. If you implement a queue with a single stack and pop from the same end you push, you have a stack. If you need a queue, you need either two stacks (one for enqueue, one for dequeue) or a linked list with head and tail pointers. **Using the wrong data structure means your system will process newest requests first** — which is usually the opposite of what you want for fairness.\n\n### 2. Forgetting to Handle the Empty Queue\n\nCalling `dequeue()` on an empty queue must return an error or a sentinel value. In many languages, this is an `IndexOutOfBoundsException` or `NoSuchElementException`. In C, it is undefined behavior. **Always check `isEmpty()` before `dequeue()`**, or use an `Optional` return type. A silent failure on an empty queue will corrupt your state machine.\n\n### 3. Blocking vs. Non-Blocking Confusion\n\nA **blocking queue** (Java's `BlockingQueue`, Go's channels) will pause the calling thread when `dequeue()` is called on an empty queue, until an element is available. A **non-blocking queue** will return immediately with an error or `null`. If you use a blocking queue in a single-threaded event loop, you will deadlock. If you use a non-blocking queue in a multi-threaded producer-consumer pattern, you will waste CPU on busy-waiting.\n\n### 4. Priority Queue Misnomer\n\nA **priority queue** is not a queue. It violates the FIFO invariant. Elements are dequeued based on priority, not arrival order. If you need strict FIFO, do not use a priority queue. If you need both priority and FIFO within a priority level, use a **priority queue of queues** (one queue per priority level), which is how most real-time operating systems schedule tasks.\n\n### 5. Memory Leaks in Linked List Implementations\n\nWhen you dequeue a node from a linked list queue, you must sever the reference to the dequeued node. If `head.next` still points to the old head after you advance `head`, the garbage collector cannot reclaim the old node. In long-running systems, this leaks memory. **Always nullify the `next` pointer of the dequeued node** before discarding it.\n\n### 6. Queue Overflow in Bounded Queues\n\nA **bounded queue** has a fixed capacity. If you enqueue when full, you must either reject the element, overwrite the oldest element (circular buffer), or block. In network routers, silently dropping packets is the correct behavior (TCP will retransmit). In financial trading systems, silently dropping messages is catastrophic. **Know your overflow policy.**\n\n---\n\n## Connection to OIP\n\nOIP stands for **Open, Deterministic, Auditable Protocol**. Every principle of OIP is embodied by the queue.\n\n### Open\n\nA queue's interface is minimal and universal: `enqueue`, `dequeue`, `peek`, `isEmpty`. There are no hidden methods. There are no vendor-specific extensions. A queue implemented in C, Python, or JavaScript follows the same contract. This is **openness**: the interface is a **public specification** that any system can implement and any system can consume. When two systems communicate through a message queue, they do not need to know each other's implementation language or runtime. They only need to agree on the queue's protocol.\n\n### Deterministic\n\nA queue is deterministic by definition. Given the same sequence of enqueues, the sequence of dequeues is always identical. This determinism is **crucial for reproducibility**. In distributed systems, determinism means that two consumers processing the same queue will produce the same result, which is the foundation of **exactly-once semantics** and **state machine replication**. When you replay a log of queue operations, you reconstruct the exact same state. This is why event sourcing and CQRS architectures are built on queues.\n\n### Auditable\n\nEvery operation on a queue is an **event**. The sequence of `enqueue` and `dequeue` operations is a complete audit trail of what entered the system and when it was processed. In an OIP system, the queue is not just a data structure — it is a **log**. That log is immutable, append-only, and timestamped. If a regulator asks, *\"Show me the exact order in which these trades were processed,\"* you point to the queue log. If a system fails, you replay the queue log to reconstruct the failure. The queue is the **source of truth**.\n\n### The Queue as an OIP Boundary\n\nIn OIP architecture, a queue is the canonical **boundary object** between two systems. It is the interface that enforces all three OIP principles simultaneously:\n\n- **Open**: The queue protocol is public and language-agnostic.\n- **Deterministic**: The FIFO invariant guarantees reproducible processing order.\n- **Auditable**: The queue log is a complete, immutable history of all interactions.\n\nWhen you design a system with queues at every boundary, you get **composability** for free. Each component is a black box that consumes from an input queue and produces to an output queue. You can test each component in isolation by feeding it a pre-recorded queue log. You can replace a component without changing the others, as long as it honors the same queue contract. You can scale a component horizontally by adding more consumers to the same queue.\n\nThis is the **OIP philosophy applied to queueing**: the queue is not a detail. It is the **architecture**.\n\n\n## Connection to the Grain Philosophy\n\nThis protocol is part of the [Open Inventory Protocol](/a/philosophy) — a living system of self-describing voxels that serves the Grain philosophy. The OIP is the interface. The philosophy is the core.\n","claims":[],"sources":[],"voxels":{"slug":"oip-what-is-a-queue","counts":{"voxels":0,"sources":0,"edges":0},"note":"slim bundle — full voxels at /api/articles/oip-what-is-a-queue/voxels"},"constitution":{"url":"https://miscsubjects.com/api/articles/constitution"},"provenance":[],"contributions":[],"topology":null,"slim":true,"ledger_totals":{"claims":0,"sources":0,"exported_claims":0,"exported_sources":0},"question_graph":{"slug":"oip-what-is-a-queue","questions":[],"evidence":[],"edges":[],"counts":{"questions":0,"evidence":0,"edges":0}},"verification":{"provenance":{"valid":true,"entries":0,"head":"genesis"},"sources":{"valid":true,"entries":0,"head":"genesis"}},"counts":{"claims":0,"sources":0,"provenance":0,"contributions":0,"questions":0,"evidence_ingests":0,"voxel_edges":0},"llm_manifest":{"version":"1","site":"https://miscsubjects.com","purpose":"Peptide evidence articles with hash-chained source ledgers, tiered claims, and a question graph. LLMs should READ bundles/URLs and WRITE back via ingest — never invent doses.","read":{"human_page":"https://miscsubjects.com/a/oip-what-is-a-queue","bundle_json":"https://miscsubjects.com/api/articles/oip-what-is-a-queue/bundle","bundle_markdown":"https://miscsubjects.com/api/articles/oip-what-is-a-queue/bundle?format=markdown","topology":"https://miscsubjects.com/api/articles/oip-what-is-a-queue/topology","question_graph":"https://miscsubjects.com/api/articles/oip-what-is-a-queue/question-graph","sources":"https://miscsubjects.com/api/articles/oip-what-is-a-queue/sources","provenance":"https://miscsubjects.com/api/articles/oip-what-is-a-queue/provenance","contributions":"https://miscsubjects.com/api/articles/oip-what-is-a-queue/contributions","graph_topology":"https://miscsubjects.com/api/articles/oip-what-is-a-queue/graph-topology?question={question}","voxels":"https://miscsubjects.com/api/articles/oip-what-is-a-queue/voxels","constitution":"https://miscsubjects.com/api/articles/constitution","ontology":"https://miscsubjects.com/api/articles/ontology","system_map":"https://miscsubjects.com/api/articles/system-map","system_map_markdown":"https://miscsubjects.com/api/articles/system-map?format=markdown","health":"https://miscsubjects.com/api/articles/oip-what-is-a-queue/health","repair":"POST https://miscsubjects.com/api/protocol/repair","list_articles":"https://miscsubjects.com/api/articles","graph_canvas":"https://miscsubjects.com/graph.html?slugs=oip-what-is-a-queue","graph_yield":"https://miscsubjects.com/api/graph?slugs=oip-what-is-a-queue&layer=yield","obsidian_vault":"https://miscsubjects.com/api/articles/obsidian-vault?slugs=oip-what-is-a-queue","graph_query":"https://miscsubjects.com/api/v1/query?from=oip-what-is-a-queue&kind=claim&where=tier=human"},"ask":{"description":"Answer only from topology; creates a question_node with gaps.","api":"POST https://miscsubjects.com/api/protocol/ask","body":{"slug":"{slug}","question":"string"},"imessage":"oip-what-is-a-queue|your question","router_tag":"[ARTICLE_ASK]oip-what-is-a-queue|question[/ARTICLE_ASK]","auth":"x-terminal-key header for API; iMessage/WhatsApp via miscsubjects build"},"ingest":{"description":"Parse pasted evidence → source ledger + claims + evidence_ingest node.","api":"POST https://miscsubjects.com/api/protocol/ingest","body":{"slug":"{slug}","evidence":"paste text","question_node_id":"optional qn_..."},"imessage":"ingest oip-what-is-a-queue|q:{node_id}|paste evidence","router_tag":"[ARTICLE_INGEST]oip-what-is-a-queue|evidence[/ARTICLE_INGEST]","tiers":["human","preclinical","anecdotal","mechanistic","speculative"]},"claim":{"description":"Prompt-injection style POST — one claim voxel with who_claims + posted_by provenance.","api":"POST https://miscsubjects.com/api/protocol/claim","body":{"slug":"{slug}","text":"one assertion","tier":"human|preclinical|anecdotal|mechanistic|speculative","who_claims":"study author, platform, or model id","source_ids":"optional [s1]"},"imessage":"claim oip-what-is-a-queue|tier|assertion — who claims it?","router_tag":"[ARTICLE_CLAIM]oip-what-is-a-queue|tier|assertion[/ARTICLE_CLAIM]","slots":["what_it_is","who_claims_what","what_is_known","what_is_unknown","mechanism","limitations","disclaimer"]},"tiers":{"human":0.8,"preclinical":0.5,"anecdotal":0.3,"mechanistic":0.3,"speculative":0.1},"invariants":["Self-explaining — every API JSON has _self; every paste widget has §SELF; root index at /api/articles/system-map","Append-only — revisions preserved at ?rev=n","Source chain verifies integrity, not truth","Answers must cite claim ids and source ids from topology","Not medical advice"],"constitution":{"version":1,"principle":"Articles are voxel graphs of claims — not prose blobs. Every assertion is a claim atom with tier, weight, source_ids, and posted_by provenance.","slots":[{"id":"what_it_is","required":true,"answers":"What is this peptide/stack/condition?"},{"id":"who_claims_what","required":true,"answers":"Who claims what — study authors, platforms, n=?"},{"id":"what_is_known","required":true,"answers":"What is known with tier labels (human/preclinical/anecdotal)"},{"id":"what_is_unknown","required":true,"answers":"What is NOT known — explicit gaps"},{"id":"mechanism","required":false,"answers":"Proposed mechanism (mechanistic tier only)"},{"id":"limitations","required":true,"answers":"Limits of evidence — no dose advice"},{"id":"disclaimer","required":true,"answers":"Not medical advice"}],"claim_rules":["One claim = one falsifiable assertion. No compound claims.","Every claim must declare tier: human|preclinical|anecdotal|mechanistic|speculative|system.","system tier = architecture/design axioms (not biological mechanism). Use for protocol self-definition.","Sourced claims must cite source_ids from the hash-chained ledger.","Unsourced claims must set source_status: unsourced and why_material.","posted_by is mandatory on every new claim (model id, human, or channel).","No medical advice, no doses, no 'you should take'.","Bad information is retracted (status:retracted), never deleted — retraction event stays on ledger.","Adversary challenges link via challenges[] / challenged_by[] — target may be downweighted.","Leaked secrets are scrubbed to [REDACTED:secret-leak] with scrub_events tombstone — honest audit trail."],"source_rules":["Every source is a voxel edge: type, url, exact quote, summary, found_by, accessed_at.","Sources hash-chain — prev/hash on append.","Anecdotal sources must name platform (reddit|x|youtube|imessage|user_entry)."],"ontology_rules":["Peptide articles (bpc-157, tb-500) are tree roots.","Condition articles (bpc-157-glp1-gut-damage) branch from peptides.","Stack articles (wolverine-stack-glp1) compose peptides — never duplicate peptide mechanism prose.","If an article has no parent embeds and is not a root peptide → sprawl candidate.","Misstep = duplicate scope with another slug; merge or reparent via embeds."],"post_protocol":{"claim":"POST /api/protocol/claim","source":"POST /api/protocol/sources","ingest":"POST /api/protocol/ingest","webhook":"POST /api/articles/<slug>/webhook {kind:claim|source}","imessage_claim":"claim {slug}|{tier}|your assertion — who claims it, source?","imessage_ingest":"ingest {slug}|evidence paste"}},"this_article":{"slug":"oip-what-is-a-queue","url":"https://miscsubjects.com/a/oip-what-is-a-queue","bundle_url":"https://miscsubjects.com/api/articles/oip-what-is-a-queue/bundle?format=markdown"}},"api_urls":{"bundle":"https://miscsubjects.com/api/articles/oip-what-is-a-queue/bundle","bundle_markdown":"https://miscsubjects.com/api/articles/oip-what-is-a-queue/bundle?format=markdown","topology":"https://miscsubjects.com/api/articles/oip-what-is-a-queue/topology","voxels":"https://miscsubjects.com/api/articles/oip-what-is-a-queue/voxels","constitution":"https://miscsubjects.com/api/articles/constitution","ontology":"https://miscsubjects.com/api/articles/ontology","question_graph":"https://miscsubjects.com/api/articles/oip-what-is-a-queue/question-graph","ask":"https://miscsubjects.com/api/protocol/ask","ingest":"https://miscsubjects.com/api/protocol/ingest","claim":"https://miscsubjects.com/api/protocol/claim","system_map":"https://miscsubjects.com/api/articles/system-map","system_map_markdown":"https://miscsubjects.com/api/articles/system-map?format=markdown"}}