> For the complete documentation index, see [llms.txt](https://docs.2hourlearning.com/edupaid/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.2hourlearning.com/edupaid/important-concepts/learning-block.md).

# Learning Block

A Learning Block is a data structure in EduPaid that represents a set of curriculums that must be taught to a student for an app or school to get paid.

The following is the JSON representation of a LearningBlock:

```json
[
  {
    "amount": 400,
    "curriculumIds": [
      "5ec20e37-d7cc-11e8-824f-0242ac160002",
      "5eb83890-d7cc-11e8-824f-0242ac160002",
      "0f6e9a91-350b-4390-b50a-981a4b1e74af",
      "7d862da4-6b9c-4a03-8124-4a86690e79b0"
    ],
    "description": "California Grade 4 full-year curriculums for Math, Science, Language Arts and History"
  },
  {
    "amount": 100,
    "curriculumIds": [
      "5ef24d37-d7sc-11e8-ac22-0242ac182417"
    ],
    "description": "FastMath Proficiency"
  }
]
```

### Prerequisites

* **Academic Requirements:** Each Learning Block has at least two academic requirements. The first is [mastery ](/edupaid/important-concepts/mastery-learning.md)learning, which requires students to master each curriculum successfully and complete the end-of-curriculum assessments for each subject. The second is **2x the standard learning pace**, emphasizing comprehensive understanding and rapid skill acquisition. **StudyReel** is the only system authorized to certify completion of academic requirements (both mastery and 2x learning)
* **Administrative Requirements:** A learning block may be associated with one or more administrative requirements, all of which must be satisfied.
* **Funding Mechanism:** Funding for apps and schools is enabled only when a student successfully meets all the academic and administrative requirements. Each requirement completion requires a token issued by a certifying authority. Every token must be verifiable with evidence that the requirement was indeed completed.
* **Certification Process:** Funds can only be claimed after EduPaid has determined and verified that all Learning Block requirements have been met and valid tokens have been issued against each requirement.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.2hourlearning.com/edupaid/important-concepts/learning-block.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
