Compare commits
35 Commits
draft2026.
...
e7a6ffeb29
| Author | SHA1 | Date | |
|---|---|---|---|
|
e7a6ffeb29
|
|||
|
c4c1be4b5f
|
|||
|
7e3693857e
|
|||
|
5d3c65bd76
|
|||
|
90e90f8373
|
|||
|
0beaad0401
|
|||
|
b503075277
|
|||
|
5167aef0b8
|
|||
|
c16e25a738
|
|||
|
2e68515e2c
|
|||
|
a2fbd002f0
|
|||
|
9664558722
|
|||
|
8ffb67cb2c
|
|||
|
f8a9aa0f9a
|
|||
|
d8dea75d89
|
|||
|
7ff57a159a
|
|||
|
d7255d2aaa
|
|||
|
168ddeba15
|
|||
|
404464f14c
|
|||
|
b8c4267efa
|
|||
|
2abc433e4b
|
|||
|
16caf9aead
|
|||
|
2727af3c00
|
|||
|
ad5d0ee6cd
|
|||
|
24a796d9da
|
|||
|
986cc59c78
|
|||
|
840314bed0
|
|||
|
346fd9fd2f
|
|||
|
d3e60279ec
|
|||
|
9e82ce29f1
|
|||
|
ed1c9f6b3f
|
|||
|
0daef59061
|
|||
|
3987cdf512
|
|||
|
f7ce031701
|
|||
|
a2cd18b5a7
|
2
.github/workflows/ci-docs.yml
vendored
2
.github/workflows/ci-docs.yml
vendored
@@ -4,7 +4,7 @@ on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
- develop
|
||||
- draft
|
||||
- release-candidate
|
||||
workflow_dispatch:
|
||||
|
||||
|
||||
77
README.md
77
README.md
@@ -1,27 +1,82 @@
|
||||
<p align="center">
|
||||
<img src="docs/assets/cmba-logo.svg" width="200">
|
||||
<img src="docs/assets/cmba-logo.svg" width="200" alt="CMBA logo">
|
||||
</p>
|
||||
|
||||
# CMBA Constitution and Bylaws
|
||||
# CMBA Bylaws, Policy, and Playing Rules
|
||||
|
||||
The Constitution and Bylaws for the baseball league known as the [Chicago Metropolitan Baseball Association (CMBA)](#about-the-cmba).
|
||||
This repository contains the governing documents for the Chicago Metropolitan Baseball Association (CMBA) in Markdown form, along with the MkDocs configuration used to publish them as a static documentation site.
|
||||
|
||||
The source text for this document can be found in Markdown format in [src/cmba-bylaws.md](src/cmba-bylaws.md).
|
||||
## Repository Layout
|
||||
|
||||
## Building from source
|
||||
- `docs/index.md`: site home page
|
||||
- `docs/01-bylaws.md`: league bylaws
|
||||
- `docs/02-policy.md`: league policy
|
||||
- `docs/03-playing-rules.md`: playing rules
|
||||
- `mkdocs/mkdocs.yml`: MkDocs site configuration
|
||||
- `mkdocs/requirements.txt`: Python packages required to build the site
|
||||
- `tools/build.sh`: production build script
|
||||
- `tools/spellcheck/`: CSpell configuration and custom baseball dictionary
|
||||
|
||||
## Local Development
|
||||
|
||||
### Requirements
|
||||
|
||||
### Steps
|
||||
- Python 3
|
||||
- `pip`
|
||||
|
||||
## Project history
|
||||
### Install Dependencies
|
||||
|
||||
The constitution and bylaws were modernized in 2021, using Google Docs. This project brings that effort into Git and Github. Previous commits show a generated plain-text history of the changes prior to this project (thanks to [gitdriver](https://github.com/larsks/gitdriver)), with the first being the version from 2016.
|
||||
```bash
|
||||
python3 -m pip install -r mkdocs/requirements.txt
|
||||
```
|
||||
|
||||
## Spell-checking
|
||||
### Preview the Site Locally
|
||||
|
||||
## GitHub Pages
|
||||
```bash
|
||||
mkdocs serve -f mkdocs/mkdocs.yml
|
||||
```
|
||||
|
||||
MkDocs serves the site locally and watches the Markdown files under `docs/` for changes.
|
||||
|
||||
## Editing Guidance
|
||||
|
||||
- Keep the canonical text in the Markdown files under `docs/`.
|
||||
- Preserve the separation between bylaws, policy, and playing rules.
|
||||
- Use the local preview server when editing headings, internal links, or cross-references.
|
||||
- Update `tools/spellcheck/baseball-words.txt` when league-specific terminology is flagged by CSpell.
|
||||
|
||||
## Publishing
|
||||
|
||||
Publishing is driven by GitHub Actions.
|
||||
|
||||
### `ci-docs`
|
||||
|
||||
The `.github/workflows/ci-docs.yml` workflow runs on pushes to `main`, `draft`, and `release-candidate`, and can also be started manually.
|
||||
|
||||
It performs the non-publishing validation steps:
|
||||
|
||||
- spellchecks `docs/**/*.md` and `README.md` with CSpell
|
||||
- installs the MkDocs dependencies from `mkdocs/requirements.txt`
|
||||
- runs a MkDocs build using `mkdocs/mkdocs.yml`
|
||||
|
||||
### `release`
|
||||
|
||||
The `.github/workflows/release.yml` workflow runs on pushed tags matching `draft*`, `rc*`, and `v*`, and can also be started manually.
|
||||
|
||||
It builds both the normal site and an offline site package, then publishes based on the tag prefix:
|
||||
|
||||
- `draft*`: creates a GitHub prerelease, attaches the offline zip and generated `.docx`, and deploys the preview site to the `gh-pages` branch under `/draft/`
|
||||
- `rc*`: creates a GitHub prerelease, attaches the offline zip and generated `.docx`, and deploys the preview site to the `gh-pages` branch under `/rc/`
|
||||
- `v*`: creates a GitHub release, attaches the offline zip, and deploys the release site to the root of the `gh-pages` branch
|
||||
|
||||
In all cases, the release workflow uses the same MkDocs configuration in `mkdocs/mkdocs.yml`, with strict mode controlled by the `MKDOCS_STRICT` GitHub Actions variable.
|
||||
|
||||
## Project History
|
||||
|
||||
The constitution and bylaws were re-architected in 2026 into the CMBA Bylaws, Policy, and Playing Rules.
|
||||
|
||||
The constitution and bylaws were modernized in 2021 using Google Docs. This project brings that work into Git and GitHub. Earlier commits preserve generated plain-text history of prior revisions, with the earliest tracked version dating to 2016.
|
||||
|
||||
## About the CMBA
|
||||
This baseball league known as the [Chicago Metropolitan Baseball Association (CMBA)](http://cmbabaseball.com) has been formed for the purpose of providing the finest amateur baseball league in the State of Illinois and Midwest; a league where an up and coming young prospect for professional baseball may play and develop; where the talented veteran player can enjoy playing among the best competition; and bring friendship and sportsmanship to the Association.
|
||||
|
||||
The [Chicago Metropolitan Baseball Association](http://cmbabaseball.com) exists to provide a high-level amateur baseball league in Illinois and the Midwest, where developing players and veteran players can compete in a strong environment centered on baseball, sportsmanship, and community.
|
||||
|
||||
@@ -1,27 +1,27 @@
|
||||
# Constitution and Bylaws
|
||||
# League Bylaws
|
||||
|
||||
## Name
|
||||
The name of the corporation as incorporated and existing under and by virtue of the Illinois General Not for Profit Corporation Act of 1986, as amended ("the Act") shall be the Chicago Metropolitan Baseball League (the "League"). The League shall have powers as are now or as may hereafter be granted by the Act.
|
||||
|
||||
## Purpose
|
||||
This League is organized exclusively for such social and athletic purposes as will qualify under Illinois statue for a non-profit corporation. It has been formed for the purpose of serving its member franchises ("Member Franchises") by organizing the finest amateur baseball league in the State of Illinois and Midwest; a league where an up and coming young prospect for professional baseball may play and develop; where the talented veteran player can enjoy playing among the best competition; and bring friendship and sportsmanship to the League and its community.
|
||||
This League is organized exclusively for such social and athletic purposes as will qualify under Illinois statute for a non-profit corporation. It has been formed for the purpose of serving its member franchises ("Member Franchises") by organizing the finest amateur baseball league in the State of Illinois and Midwest; a league where an up and coming young prospect for professional baseball may play and develop; where the talented veteran player can enjoy playing among the best competition; and bring friendship and sportsmanship to the League and its community.
|
||||
|
||||
## Powers
|
||||
The League shall have and exercise all rights and powers conferred on corporations under the Act, provided, however, that the League is not empowered to engage in any activity which in itself is not in furtherance of its purposes and limitations as set forth in these Constitutions and Bylaws.
|
||||
The League shall have and exercise all rights and powers conferred on corporations under the Act, provided, however, that the League is not empowered to engage in any activity which in itself is not in furtherance of its purposes and limitations as set forth in these Bylaws.
|
||||
|
||||
## Limitations
|
||||
Notwithstanding any other provisions of this Constitution and Bylaws (the "Bylaws"), the following rules shall conclusively bind the League and all persons acting for or on behalf of it:
|
||||
Notwithstanding any other provisions of these Bylaws, the following rules shall conclusively bind the League and all persons acting for or on behalf of it:
|
||||
|
||||
1. No part of the net earnings of the League shall inure to the benefit of, or be distributable to, any director of the League, officer of the League, or any other private individual (except that reasonable compensation may be paid for services rendered to or for the League affecting one or more of its purposes). No director, officer, member, or any private individual shall be entitled to share in the distribution of any of the corporate assets upon dissolution of the League.
|
||||
|
||||
1. No substantial part of the activities of the League shall be the carrying on of propaganda, or otherwise attempting to influence legislation, and the League shall not participate in, or intervene in (including the publication or distribution of statements) any political campaign on behalf of or in opposition to any candidate for public office.
|
||||
|
||||
1. The League shall not conduct or carry on any activities not permitted to be conducted or carried on by an organization exempt from taxation under Section 501(c)(3) of the Code and its regulations as they now exist or as they may hereafter be amended, or by an organization, contributions to which are deductible under Section 170(c)(2) of the Code and regulations as they now exist or as they may hereafter be amended.
|
||||
1. The League shall not conduct or carry on any activities not permitted to be conducted or carried on by an organization exempt from taxation under state or federal law.
|
||||
|
||||
## Principal Office.
|
||||
## Principal Office
|
||||
The League shall have and continuously maintain a principal office at such location in the State of Illinois as may be determined by the League's Board of Directors.
|
||||
|
||||
## Registered Office and Agent.
|
||||
## Registered Office and Agent
|
||||
The League shall have and maintain a registered office and agent in the State of Illinois in accordance with the requirements of the act.
|
||||
|
||||
## Directors
|
||||
@@ -32,10 +32,10 @@ Except as otherwise expressly herein provided or as otherwise provided by law, t
|
||||
The League's Board of Directors shall be composed of at least three (3) Directors ("Director") or such other greater number of Directors established by the Board of Directors from time to time. An individual need not be a manager of a Member Franchise in order to be a Director.
|
||||
|
||||
### Election and Term of Office
|
||||
Directors shall be elected at the annual meeting of the League by the affirmative vote of a majority of Member Franchises in good standing. Each Member Franchise in good standing shall have one (1) vote, cast by its Manager or designated representative. The term of office of each Director shall be until the next annual meeting. Directors shall hold office until the expiration of the term for which such Director is elected and until such Director's successor has been elected or until the Director's death, resignation, or removal. Directors may serve successive terms.
|
||||
Directors shall be elected at the annual meeting of the Members of the League by the affirmative vote of a majority of Member Franchises in Good Standing. Each Member Franchise in Good Standing shall have one (1) vote, cast by its Manager or designated representative. The term of office of each Director shall be until the next annual meeting. Directors shall hold office until the expiration of the term for which such Director is elected and until such Director's successor has been elected or until the Director's death, resignation, or removal. Directors may serve successive terms.
|
||||
|
||||
### Resignation and Removal
|
||||
Any Director may resign by written notice delivered to the Board of Directors or to the Commissioner or Secretary of the League. Any Director may be removed, with or without cause, by the affirmative vote of a majority of the Directors then in office. Any vacancy may be filled by the Board of Directors until the next annual meeting, at which time the seat shall be submitted for election by Member Franchises in good standing.
|
||||
Any Director may resign by written notice delivered to the Board of Directors or to the Commissioner or Secretary of the League. Any Director may be removed, with or without cause, by the affirmative vote of a majority of the Directors then in office. Any vacancy may be filled by the Board of Directors until the next annual meeting, at which time the seat shall be submitted for election by Member Franchises in Good Standing.
|
||||
|
||||
### Compensation
|
||||
The Directors shall serve without compensation.
|
||||
@@ -43,7 +43,7 @@ The Directors shall serve without compensation.
|
||||
## Officers
|
||||
|
||||
### Designation
|
||||
The officers of the League shall be a Commissioner, a Treasurer, and a Secretary. All offices shall be filled by an affirmative vote of the Board on an annual basis. Other Officers may be created by the Directors at their discretion. Officers may serve successive terms.
|
||||
The officers of the League shall be a Commissioner, a Treasurer, and a Secretary. All offices shall be filled by an affirmative vote of the Board on an annual basis. Other Officers may be created by the Directors at their discretion. Officers may be, but are not required to be, a Director of the Board. Officers may serve successive terms.
|
||||
|
||||
### Resignation and Removal
|
||||
|
||||
@@ -52,26 +52,33 @@ Any Officer may resign by written notice delivered to the Board of Directors or
|
||||
## Officer Duties
|
||||
|
||||
### Commissioner
|
||||
The Commissioner shall
|
||||
The Commissioner shall
|
||||
|
||||
1. Preside at meetings of the Membership and of the Board of Directors.
|
||||
1. Execute contracts in the name of and on behalf of the League, with approval of the board or in accordance with the budget approved by the Board.
|
||||
1. Prepare and propose the League’s budget for approval by the Board.
|
||||
1. Shall perform such other duties as may be determined by the board of directors, and shall perform and discharge such other duties as generally devolve upon a chief executive officer.
|
||||
1. Shall perform such other duties as may be determined by the Board of Directors, and shall perform and discharge such other duties as generally devolve upon a chief executive officer.
|
||||
|
||||
### Treasurer
|
||||
The Treasurer shall keep or, at the discretion of the Board cause to be kept, correct and complete records showing accurately at all times the financial condition of League; shall be legal custodian of all monies and other valuables which may from time to time come into the possession of the League; shall maintain a bank account in the name of League; shall prepare and file or, at the discretion of the board, cause to be prepared and filed, all required corporation tax forms and reports; shall furnish at meetings of the Board of Directors and Membership or whenever requested by the Board of Directors, a statement of the financial condition of the League; shall maintain or, at the discretion of the Board, cause to be maintained a roster of active Members in good standing; and shall perform such other duties as the Board of Directors may prescribe.
|
||||
The Treasurer shall keep or, at the discretion of the Board cause to be kept, correct and complete records showing accurately at all times the financial condition of League; shall be legal custodian of all monies and other valuables which may from time to time come into the possession of the League; shall maintain a bank account in the name of League; shall prepare and file or, at the discretion of the board, cause to be prepared and filed, all required corporation tax forms and reports; shall furnish at meetings of the Board of Directors and Membership or whenever requested by the Board of Directors, a statement of the financial condition of the League; shall maintain or, at the discretion of the Board, cause to be maintained a roster of active Members in Good Standing; and shall perform such other duties as the Board of Directors may prescribe.
|
||||
|
||||
### Secretary
|
||||
The Secretary shall have the custody and care of the corporate records of the League, shall attend all meetings of the Members and of the Board of Directors, shall keep a true and complete record of the proceedings of all such meetings, shall file and take charge of all documents belonging to the League, and shall perform such duties as may be prescribed by the Board of Directors.
|
||||
The Secretary shall have the custody and care of the corporate records of the League, shall attend all meetings of the Members and of the Board of Directors, shall keep a true and complete record of the proceedings of all such meetings, shall file and take charge of all documents belonging to the League, and shall perform such duties as may be prescribed by the Board of Directors. In the absence or incapacity of the Commissioner, the Secretary shall perform the duties of the Commissioner.
|
||||
|
||||
### Compensation
|
||||
The Officers shall serve without compensation.
|
||||
|
||||
## Member Franchises
|
||||
The League’s members shall consist of those Member Franchises (teams) admitted in accordance with these Bylaws and League Rules and Policy.
|
||||
|
||||
The Board of Directors shall have authority to admit, suspend, remove, or otherwise determine the membership status of Member Franchises, subject to these Bylaws. The Board may establish, or delegate through League Policy, reasonable procedures, eligibility standards, conditions of admission, requirements for good standing, and grounds and procedures for suspension or removal.
|
||||
|
||||
A Member Franchise admitted by the Board shall become a member of the League upon satisfaction of any initial conditions of admission established under League Rules and Policy.
|
||||
|
||||
## Meetings of the Board
|
||||
|
||||
### Annual Meeting
|
||||
The Board of Directors shall hold its annual meeting after January 1 at a time and place set by the Commissioner. This meeting must be held in person, except in extenuating circumstances. Each Member Franchise in good standing may send one representative to participate in Director elections and other matters submitted to Member Franchises for vote.
|
||||
The Board of Directors shall hold its annual meeting after January 1 at a time and place set by the Commissioner.
|
||||
|
||||
### Additional Meetings
|
||||
Additional meetings of the Board of Directors may be called by the Commissioner or any Director.
|
||||
@@ -82,6 +89,31 @@ A majority of the Board of Directors shall constitute a quorum for the transacti
|
||||
### Informal Action by Directors
|
||||
Unless specifically prohibited by the Articles of Incorporation or these Bylaws, any action required to be taken or which may be taken at a meeting of the Board of Directors may be taken without a meeting if a consent in writing or by electronic mail setting forth the action so taken shall be signed or submitted by all of the directors entitled to vote with respect to the subject matter thereof.
|
||||
|
||||
## Meetings of the Member Franchise
|
||||
|
||||
### Annual Meeting
|
||||
The League shall hold an annual meeting of the Member Franchises after January 1 on a date, time, and place set by the Commissioner. This meeting shall include the Board of Directors and must be held in person, except in extenuating circumstances. It may take place immediately before or after the annual meeting of the board, but it is not required to do so.
|
||||
|
||||
### Special Meetings
|
||||
Special meetings of the Member Franchises may be called by the Commissioner, by a majority of the Board of Directors, or upon written request of Member Franchises entitled to cast at least one-third of the votes.
|
||||
|
||||
### Notice
|
||||
Reasonable notice of any meeting of the Member Franchises shall be provided to each Member Franchise entitled to vote and shall include the date, time, place, and principal business to be considered.
|
||||
|
||||
### Quorum
|
||||
Four-fifths of Member Franchises in good standing shall constitute a quorum for the transaction of member business.
|
||||
|
||||
### Voting and Member Actions
|
||||
Each Member Franchise in good standing shall be entitled to one vote on matters submitted to the membership.
|
||||
|
||||
Member actions shall include:
|
||||
1. Election of Directors;
|
||||
2. Advisory votes on League operational matters submitted for membership input;
|
||||
3. Confidence votes on League Officers.
|
||||
4. Approval of amendents to the Playing Rules.
|
||||
|
||||
Unless otherwise required by these Bylaws, member actions shall be decided by a simple majority of votes cast at a meeting at which a quorum is present.
|
||||
|
||||
## Miscellaneous
|
||||
|
||||
### Drafts, Checks, Deposits
|
||||
@@ -98,4 +130,4 @@ The League shall keep correct and complete books and records of accounts and als
|
||||
These Bylaws may be altered, amended, or repealed, and new bylaws may be adopted by resolution of the Board of Directors at any time or from time to time by the vote of two-thirds of the Directors.
|
||||
|
||||
## Dissolution
|
||||
Upon dissolution of the League or the winding up of its affairs, the League's Board of Directors shall, after paying or making provisions for the payment of all the liabilities of the League, dispose of all the assets of the League exclusively for the purposes of the League in such manner, or to such organization or organizations organized and operated exclusively for charitable, educational, religious, or scientific purposes as shall at the time qualify as an exempt organization or organizations under Section 501(c)(3) of the Code, or any corresponding section of any future federal tax code, as the Board of Directors shall determine. Any such assets not so disposed of shall be distributed to the federal government, or to a state or local government for a public purpose.
|
||||
Upon dissolution of the League or the winding up of its affairs, the Board of Directors shall, after paying or making provision for the payment of all liabilities of the League, distribute the remaining assets of the League in a manner consistent with the purposes of the League and applicable law. The Board may distribute such assets to one or more nonprofit, amateur athletic, community, or other lawful organizations whose purposes are consistent with those of the League, or as otherwise permitted or required by law. Any such assets not so disposed of shall be distributed to the federal government, or to a state or local government for a public purpose.
|
||||
@@ -1,18 +1,18 @@
|
||||
# League Rules and Policy
|
||||
# League Policy
|
||||
|
||||
## Authority and Applicability
|
||||
This Rules and Policy document is adopted pursuant to the League’s Constitution and Bylaws and governs the operational rules, procedures, and competitive structure of the League. In the event of a conflict between this document and the Constitution and Bylaws, the Constitution and Bylaws shall control.
|
||||
This Policy document ("League Policy") is adopted pursuant to the League’s Bylaws and governs the operational rules, procedures, and competitive structure of the League. In the event of a conflict between this document and the Bylaws, the Bylaws shall control.
|
||||
|
||||
## League Governance
|
||||
The Commissioner is responsible for the day-to-day administration of League operations in accordance with the Constitution and Bylaws and this Rules and Policy document. The Board provides oversight of League operations and may review or direct actions of the Commissioner.
|
||||
The Commissioner is responsible for the day-to-day administration of League operations in accordance with the Bylaws and League Policy. The Board provides oversight of League operations and may review or direct actions of the Commissioner.
|
||||
|
||||
### Operational Rights of Member Franchises
|
||||
1. Member Franchises in good standing shall have the right to participate in League governance on matters of League operation as provided herein.
|
||||
1. Member Franchises in Good Standing shall have the right to participate in League governance on matters of League operation as provided herein.
|
||||
1. Member Franchises shall have the right to appeal disciplinary or eligibility decisions affecting them in accordance with procedures set forth in this document.
|
||||
1. Member Franchises may provide input and vote in an advisory capacity on matters of League policy, administration, and operation.
|
||||
1. Member Franchises may vote with binding effect on playing rules, competition rules, and on-field regulations, except where authority is otherwise reserved by this document or the Constitution and Bylaws. Each Member Franchise is entitled to one vote.
|
||||
1. Each Member Franchise is entitled to one vote in voting matters.
|
||||
1. Exercise of these rights is contingent upon the Member Franchise being in good standing.
|
||||
1. Member Franchises may provide input and vote in an advisory capacity on matters of League policy, administration, and operation.
|
||||
1. Member Franchises may vote with binding effect on playing rules, competition rules, and on-field regulations, except where authority is otherwise reserved by this document or the Bylaws.
|
||||
1. Exercise of these rights is contingent upon the Member Franchise being in Good Standing.
|
||||
|
||||
### Budget
|
||||
The Commissioner shall prepare a proposed budget for each fiscal year.
|
||||
@@ -21,7 +21,9 @@ The proposed budget shall include, at a minimum:
|
||||
|
||||
1. Annual Member Franchise dues and payment schedule;
|
||||
1. Other anticipated sources of income;
|
||||
1. Expected expenditures for the operating year.
|
||||
1. Expected expenditures for the operating year;
|
||||
1. Any reserve or buffer funds;
|
||||
1. Any applicable plans for refund, rebate, or credit of funds to Member Franchises
|
||||
|
||||
The proposed budget shall be presented to the Board for review and approval. Upon approval by the Board, the budget shall constitute the official League Budget for the applicable fiscal year. The approved League Budget shall be shared with all Member Franchises on an annual basis for informational purposes.
|
||||
|
||||
@@ -54,21 +56,21 @@ The Committee shall issue findings and recommendations to the Commissioner or Bo
|
||||
|
||||
## Amendments and Rule Changes
|
||||
|
||||
### Constitution and Bylaws
|
||||
Amendments to the Constitution and Bylaws are governed exclusively by the procedures set forth therein. Nothing in this Rules and Policy document shall modify or supersede those requirements.
|
||||
### Bylaw Amendments
|
||||
Amendments to the Bylaws are governed exclusively by the procedures set forth therein. Nothing in League Policy shall modify or supersede those requirements.
|
||||
|
||||
### Rules and Policy Amendments
|
||||
1. This Rules and Policy document may be amended to address League operations, administration, discipline, or procedures.
|
||||
### League Policy Amendments
|
||||
1. League Policy may be amended to address League operations, administration, discipline, or procedures.
|
||||
1. Amendments may be proposed by the Commissioner or the Board.
|
||||
1. Adoption of a Rules and Policy amendment shall require approval by the Board.
|
||||
1. Adoption of a League Policy amendment shall require approval by the Board.
|
||||
1. Member Franchises may be afforded an opportunity to provide advisory vote on proposed amendments.
|
||||
1. Approved amendments shall take effect as specified at the time of adoption.
|
||||
|
||||
### Playing Rules Amendments
|
||||
1. Playing rules governing on-field competition may be amended separately from this Rules and Policy document.
|
||||
1. Playing rules amendments shall be adopted by a vote of Member Franchises in good standing.
|
||||
1. Unless otherwise specified, a simple majority vote shall be sufficient to adopt a playing rules amendment.
|
||||
1. Playing rules amendments shall not apply retroactively and shall take effect at the start of a season.
|
||||
1. Playing Rules governing on-field competition may be amended separately from this League Policy.
|
||||
1. Playing Rules amendments shall be adopted by a vote of Member Franchises in Good Standing.
|
||||
1. Unless otherwise specified, a simple majority vote shall be sufficient to adopt a Playing Rules amendment.
|
||||
1. Playing Rules amendments shall not apply retroactively and shall take effect at the start of a season.
|
||||
|
||||
## League Participants
|
||||
|
||||
@@ -105,7 +107,7 @@ The Commissioner shall review applications for new Member Franchises for complia
|
||||
1. Communication with the league;
|
||||
1. Submission of rosters and player information;
|
||||
1. Payment or coordination of all required fees;
|
||||
1. Ensuring compliance with league rules by players and associated individuals.
|
||||
1. Ensuring compliance with League Policy by players and associated individuals.
|
||||
1. All actions taken by the Manager shall be deemed actions of the Member Franchise.
|
||||
1. The Member Franchise shall remain responsible for all obligations and penalties regardless of internal team disputes or player actions.
|
||||
|
||||
@@ -120,7 +122,7 @@ Player status is contingent upon:
|
||||
|
||||
1. Compliance with roster and eligibility requirements;
|
||||
1. Payment of any applicable fees to their Manager or the League;
|
||||
1. Adherence to all League rules, policies, and codes of conduct.
|
||||
1. Adherence to all League Policy, rules, and codes of conduct.
|
||||
|
||||
A Player participates in League activities solely through association with a Member Franchise and possesses no independent membership rights.
|
||||
|
||||
@@ -128,15 +130,15 @@ A Player participates in League activities solely through association with a Mem
|
||||
### Standing and Membership Status
|
||||
|
||||
1. **In Good Standing**
|
||||
1. A Member Franchise shall be considered *in good standing* when it has satisfied all financial obligations, complied with League rules and policies, and is not subject to suspension.
|
||||
1. Only Member Franchises in good standing may exercise membership rights, including voting, participation in postseason play, and eligibility for League awards.
|
||||
1. A Member Franchise shall be considered *in Good Standing* when it has satisfied all financial obligations, complied with League Policy, and is not subject to suspension.
|
||||
1. Only Member Franchises in Good Standing may exercise membership rights, including voting, participation in postseason play, and eligibility for League awards.
|
||||
|
||||
1. **Temporary Suspension**
|
||||
1. A Member Franchise may be placed on temporary suspension by the Commissioner for failure to comply with financial obligations or other League requirements.
|
||||
1. A temporarily suspended Member Franchise shall have its membership rights suspended for the duration of the suspension.
|
||||
|
||||
1. **Indefinite Suspension**
|
||||
1. A Member Franchise may be placed on indefinite suspension by the Commissioner for serious or repeated violations of League rules or policies.
|
||||
1. A Member Franchise may be placed on indefinite suspension by the Commissioner for serious or repeated violations of League Policy.
|
||||
1. An indefinitely suspended Member Franchise shall forfeit all membership rights until reinstated.
|
||||
1. Grounds for indefinite suspension may include, but are not limited to:
|
||||
1. Conduct detrimental to the objectives of the League;
|
||||
@@ -147,15 +149,15 @@ A Player participates in League activities solely through association with a Mem
|
||||
1. Failure to comply with codes of conduct set forth in this document.
|
||||
|
||||
1. **Leave of Absence**
|
||||
1. A Member Franchise in good standing may be granted a leave of absence by the Commissioner.
|
||||
1. A Member Franchise in Good Standing may be granted a leave of absence by the Commissioner.
|
||||
1. A Member Franchise on an approved leave of absence shall retain such membership rights as determined by the Commissioner.
|
||||
1. A Member Franchise on leave of absence for more than two (2) years must reapply for membership.
|
||||
|
||||
#### Change of Status
|
||||
A Member Franchise subject to suspension may be granted a change of status by the Commissioner upon resolution of the conditions giving rise to the suspension. A change of status may include restoration to good standing or modification of the existing suspension, subject to any conditions imposed by the Commissioner or otherwise required by this document.
|
||||
A Member Franchise subject to suspension may be granted a change of status by the Commissioner upon resolution of the conditions giving rise to the suspension. A change of status may include restoration to Good Standing or modification of the existing suspension, subject to any conditions imposed by the Commissioner or otherwise required by this document.
|
||||
|
||||
### Discipline and Enforcement
|
||||
To be successful, the League depends on self-regulation and shared accountability. All League participants are expected to encourage one another to comply with League rules and expectations. Participants may report potential infractions to the Commissioner, any League Officer, or any member of the Board by text message, email, phone call, or other means. A report, by itself, does not constitute a request for forfeit or any other specific sanction. League officials may retain such reports to identify patterns or repeated issues and to support further action when appropriate.
|
||||
To be successful, the League depends on self-regulation and shared accountability. All League participants are expected to encourage one another to comply with League Policy and expectations. Participants may report potential infractions to the Commissioner, any League Officer, or any member of the Board by text message, email, phone call, or other means. A report, by itself, does not constitute a request for forfeit or any other specific sanction. League officials may retain such reports to identify patterns or repeated issues and to support further action when appropriate.
|
||||
|
||||
#### Authority
|
||||
The Commissioner shall have authority to impose discipline consistent with this document, including warnings, fines, suspensions, and referrals for further review. Disciplinary actions may apply to Players, Managers, or Member Franchises, as appropriate.
|
||||
@@ -169,13 +171,13 @@ In exercising enforcement authority, the Commissioner may utilize one or more of
|
||||
1. Referral of matters for advisory review or appeal pursuant to this document.
|
||||
|
||||
### Meetings
|
||||
All franchise members are expected to attend all league meetings. Failure of a franchise to send a representative to a meeting may result in a fine. Those members present at any meeting shall constitute a quorum.
|
||||
All franchise members are expected to have representation at all league meetings.
|
||||
|
||||
### Financial Obligations
|
||||
1. Each Member Franchise is responsible for payment of all League dues, fees, and fines assessed to it pursuant to the approved League Budget or this document.
|
||||
1. Each Player in the League is expected to pay their team fees as designated by that team. Players may not switch teams within the League unless or until any and all debts are paid in full.
|
||||
1. Players may be assessed individual fees or fines as permitted by League rules; however, the Member Franchise shall remain ultimately responsible for ensuring such obligations are satisfied.
|
||||
1. Failure to satisfy financial obligations in accordance with established deadlines may result in penalties, suspension, or loss of good standing as provided elsewhere in this document.
|
||||
1. Players may be assessed individual fees or fines as permitted by League Policy; however, the Member Franchise shall remain ultimately responsible for ensuring such obligations are satisfied.
|
||||
1. Failure to satisfy financial obligations in accordance with established deadlines may result in penalties, suspension, or loss of Good Standing as provided elsewhere in this document.
|
||||
|
||||
### Restrictions
|
||||
|
||||
@@ -186,11 +188,11 @@ Tampering, or poaching, is defined as the deliberate solicitation, without conse
|
||||
Member Franchises are expected to prioritize their commitments to the League. Participation in outside leagues is permitted by agreement with the League. Participation in outside leagues does not relieve a Member Franchise or its Players of League obligations, including playing games on their League-scheduled dates and times. Violations of this provision may result in disciplinary action.
|
||||
|
||||
### Penalties and Fees
|
||||
The Commissioner may levy fines to any League Member franchise or player subject to Board oversight. Fines may be levied for violation of this Constitution and its Bylaws or conduct unbecoming of a representative of the League. The penalties and amounts set forth in this section are operational in nature and may be adjusted by the Commissioner with Board oversight, unless otherwise specified.
|
||||
The Commissioner may levy fines to any League Member franchise or player subject to Board oversight. Fines may be levied for violation of Bylaws or Policies or conduct unbecoming of a representative of the League. The penalties and amounts set forth in this section are operational in nature and may be adjusted by the Commissioner with Board oversight, unless otherwise specified.
|
||||
|
||||
1. Late payment of annual dues shall incur a penalty of ten dollars ($10.00) per week, not to exceed five (5) weeks.
|
||||
1. Members in violation of the above shall be placed on temporary suspension for a period of two (2) weeks.
|
||||
1. Members who have not paid outstanding dues by the end of the two week suspension shall be placed on indefinite suspension until all dues are paid. Members who have not paid outstanding dues by the end of the two week suspension shall be placed on indefinite suspension until all dues are paid.
|
||||
1. Members who have not paid outstanding dues by the end of the two week suspension shall be placed on indefinite suspension until all dues are paid.
|
||||
1. A forfeit fee may be assessed per forfeited game.
|
||||
1. Fines for a single incident shall not exceed fifty dollars ($50.00).
|
||||
|
||||
@@ -199,6 +201,35 @@ The Commissioner may levy fines to any League Member franchise or player subject
|
||||
1. The Commissioner may decide appeals directly or refer them for advisory review as appropriate.
|
||||
1. A Manager aggrieved by a discretionary or judgment decision of the Commissioner may request Board review within seventy-two (72) hours of the decision; the Board may, in its sole discretion, accept or decline review, and if it accepts review, it may affirm, modify, or reverse the Commissioner's decision by majority vote. The Board is not required to hold a hearing or provide a written explanation when declining review, and unless the Board grants a stay, the Commissioner's decision remains in effect pending Board review. Decisions on appeal or Board review are final.
|
||||
|
||||
## Annual League Meeting
|
||||
The League shall hold an annual meeting in according with the Bylaws. Quorum and voting thresholds are governed by the Bylaws. The annual meeting process shall consist of the following stages:
|
||||
|
||||
### Pre-Meeting of the Current Board
|
||||
Prior to the annual meeting, the current Board shall convene to prepare and approve the proposed agenda, voting items, and supporting materials for member review.
|
||||
|
||||
### Annual Meeting of the Member Franchises
|
||||
The annual meeting shall include the Board and Member Franchises in Good Standing and shall include, at minimum, the following business:
|
||||
|
||||
1. Election of Directors to serve on the Board for the upcoming term.
|
||||
1. Advisory vote on the regular-season schedule framework.
|
||||
1. Advisory vote on postseason format.
|
||||
1. Advisory vote on League prizes and awards categories.
|
||||
1. Advisory vote on the admission of prospective Member Franchises.
|
||||
1. Confidence votes on League Officers (including Commissioner, Treasurer, and Secretary).
|
||||
1. Discussion of any Policy or Rules amendments.
|
||||
|
||||
Unless otherwise provided in the Bylaws, advisory and confidence votes are non-binding and are intended to guide Board action.
|
||||
|
||||
### Post-Meeting of the Newly Constituted Board
|
||||
Following the annual meeting, the newly constituted Board shall convene to:
|
||||
|
||||
1. Confirm or appoint League Officers as required by the Bylaws;
|
||||
1. Consider advisory vote results and adopt final operating decisions;
|
||||
1. Approve or reject new Member Franchises;
|
||||
1. Assign committees, roles, and implementation responsibilities for the upcoming season.
|
||||
|
||||
This shall constitute the Board's annual meeting requirements as required by the Bylaws
|
||||
|
||||
## Conduct and Discipline
|
||||
|
||||
### League Standard
|
||||
@@ -209,7 +240,7 @@ All League members, including officers, Managers, umpires, players, coaches, and
|
||||
|
||||
1. Act honestly and in good faith in all League matters.
|
||||
1. Compete with sportsmanship and respect for opponents, teammates, umpires, and League officials.
|
||||
1. Comply with all League rules, facility rules, and applicable laws.
|
||||
1. Comply with all League Policy, facility rules, and applicable laws.
|
||||
1. Refrain from conduct detrimental to the League’s competitive standards, reputation, or operations.
|
||||
1. Follow directives issued by umpires and League officials during games and League activities.
|
||||
|
||||
@@ -223,7 +254,7 @@ Prohibited conduct includes, but is not limited to:
|
||||
1. Flagrant or intentional dangerous play, including prohibited collisions.
|
||||
1. Harassment, discriminatory conduct, or abusive language inconsistent with League standards.
|
||||
1. Knowingly providing false information in protests, field status reports, roster submissions, or other League processes.
|
||||
1. Repeated or willful refusal to comply with League rules, disciplinary directives, or financial obligations.
|
||||
1. Repeated or willful refusal to comply with League Policy, disciplinary directives, or financial obligations.
|
||||
|
||||
### Penalties and Enforcement
|
||||
1. The Commissioner has primary authority to investigate matters and impose discipline, subject to Board oversight as otherwise provided in this document.
|
||||
@@ -234,7 +265,7 @@ Prohibited conduct includes, but is not limited to:
|
||||
1. Game ejection;
|
||||
1. Suspension for a specified number of games or period of time;
|
||||
1. Forfeit or technical forfeit consequences where applicable;
|
||||
1. Loss of good standing;
|
||||
1. Loss of Good Standing;
|
||||
1. Indefinite suspension or expulsion from the League for severe or repeated violations.
|
||||
1. In determining discipline, the Commissioner may consider severity, intent, prior conduct, risk to safety, and whether the conduct harmed League operations or competitive integrity.
|
||||
1. Managers are responsible for the conduct of their players, coaches, and team personnel and may be disciplined for team-related violations.
|
||||
@@ -242,7 +273,7 @@ Prohibited conduct includes, but is not limited to:
|
||||
### Specific Minimum Penalties
|
||||
Unless stronger discipline is warranted by the circumstances:
|
||||
|
||||
1. Any player who instigates a phyiscal fight shall be suspended for not less than one (1) full season and may be fined.
|
||||
1. Any player who instigates a physical fight shall be suspended for not less than one (1) full season and may be fined.
|
||||
1. Any player or coach who participates in a physical fight shall be suspended for three (3) games and fined fifty dollars ($50.00).
|
||||
1. Any player or coach who physically assaults an umpire shall be permanently expelled from the League and may be reported to law enforcement as required.
|
||||
1. A player ejected for a flagrant collision shall be suspended for three (3) games and fined thirty dollars ($30.00).
|
||||
@@ -267,12 +298,12 @@ For the safety of all participants and the preservation of serious and competiti
|
||||
## Season Administration
|
||||
|
||||
### Official League Communications
|
||||
The Commissioner shall maintain official League communication channels to publish schedules, scores, standings, rosters, rules, notices, and other pertinent League information.
|
||||
The Commissioner shall maintain official League communication channels to publish the League Bylaws, League Policy, Playing Rules, schedules, scores, standings, rosters, notices, and other pertinent League information.
|
||||
|
||||
### Team Rosters; Players and Eligibility
|
||||
|
||||
#### Roster Deadline; Roster Size
|
||||
Prior to June 1, each team has an “open roster.” League teams must submit a roster of their players to the Commissioner no later than June 1 of each year. Any team that does not submit its roster to the Commissioner by June 1 as required by this [Roster Deadline; Roster Size](#roster-deadline-roster-size) and in accordance with the information requirements in [Roster Information Requirements](#roster-information-requirements) shall be deemed not in good standing. Consequences of not being in good standing are defined in [Classification; Standing](#classification-standing) of the Constitution. This submitted roster plus any and all legal roster transactions per [Roster Transactions](#roster-transactions), shall be considered official. Players not on a team’s official roster are ineligible for play, except where specifically noted in this [Teams And Managers](#teams-and-Managers).
|
||||
Prior to June 1, each team has an “open roster.” League teams must submit a roster of their players to the Commissioner no later than June 1 of each year. Any team that does not submit its roster to the Commissioner by June 1 as required by this [Roster Deadline; Roster Size](#roster-deadline-roster-size) and in accordance with the information requirements in [Roster Information Requirements](#roster-information-requirements) shall be deemed not in Good Standing. This submitted roster plus any and all legal roster transactions per [Roster Transactions](#roster-transactions), shall be considered official. Players not on a team’s official roster are ineligible for play, except where specifically noted.
|
||||
Each team’s roster must contain a minimum of sixteen (16) players and shall not exceed twenty-six (26) players, in each case, excluding non-playing Managers and coaches.
|
||||
|
||||
#### Roster Information Requirements
|
||||
@@ -286,16 +317,13 @@ A team may drop players at any time as long as the team’s roster does not fall
|
||||
|
||||
Any and all roster changes shall be submitted to the Commissioner and satisfy the information requirements in [Roster Information Requirements](#roster-information-requirements). Roster changes shall be effective as of the first pitch of the team’s first regularly scheduled game after the updated roster is submitted.
|
||||
|
||||
#### Alumni
|
||||
If a team would otherwise be required to forfeit or technically forfeit a game after June 1 due to a lack of eligible players in attendance, the team can use one (but not more than one) of its former players (“alumni”) in that game. The team’s Manager shall inform the opposing team’s Manager and the Commissioner as soon as possible (and in no event later than the first pitch) the intention to use an alumni player and will provide to the opposing team’s Manager and the Commissioner with the alumni player’s name, age, bats/throws, position and uniform number. Alumni players are not eligible to play in the playoffs.
|
||||
#### Alumni Players
|
||||
If a team would otherwise be required to forfeit or technically forfeit a game after June 1 due to a lack of eligible players in attendance, the team can use one (but not more than one) of its former players (“Alumni Player”) in that game. The team’s Manager shall inform the opposing team’s Manager and the Commissioner as soon as possible (and in no event later than the first pitch) the intention to use an Alumni Player and will provide to the opposing team’s Manager and the Commissioner with the Alumni Player’s name, age, bats/throws, position and uniform number.
|
||||
|
||||
#### Eligible Players
|
||||
Eligible players must be of at least eighteen (18) years of age by the date of the teams first +game. No player may play for more than one team in a season (either before or after June 1).
|
||||
Eligible players must be of at least eighteen (18) years of age by the date of the teams first game. No player may play for more than one team in a season (either before or after June 1).
|
||||
A team that uses an ineligible player, per the rules in this [Team Rosters Players And Eligibility](#team-rosters-players-and-eligibility), will be deemed to have forfeited any and all games in which the illegal player(s) participated.
|
||||
|
||||
#### Postseason Player Eligibility
|
||||
Players must appear in at least five (5) regular-season games to be eligible for postseason play. Upon request to the Commissioner, an exception may be granted for a player with a long-term injury..
|
||||
|
||||
#### Free Agents
|
||||
A player must inform the League Commissioner and such player's Manager no later than February 15 of the upcoming season if of an intention to leave the team and become a free agent. After this the player is free to play for another team in the League. A Manager may waive this deadline for an individual player at the Manager’s discretion. If the player fails to notify as specified, that player shall be disqualified from playing on another League team for that season.
|
||||
|
||||
@@ -306,36 +334,57 @@ All games not completed by the end of the regular season shall count as losses f
|
||||
The League shall use a point system to determine the standings. A team is awarded:
|
||||
|
||||
1. Two (2) points for a win (including a win against a team in technical forfeit)
|
||||
1. One (1) point for a win while in technical forfeit (see [Forfeits](#forfeits))
|
||||
1. One (1) point for a win while in technical forfeit (see [Technical Forfeit](#technical-forfeit))
|
||||
1. One (1) point for a tie game
|
||||
1. Zero (0) points for a loss
|
||||
1. Minus two (-2) points for a loss by forfeit (see [Forfeits](#forfeits)).
|
||||
1. Minus two (-2) points for a loss by forfeit (see [Forfeit](#forfeit)).
|
||||
|
||||
### Standings Tie-breakers
|
||||
In the event two teams finish the regular season in a tie for a position, the following tie-breaking procedure will take effect:
|
||||
|
||||
1. Record in head-to-head competition.
|
||||
1. Record within the league.
|
||||
1. Record within the division (if applicable).
|
||||
1. Win-Loss Record in head-to-head competition.
|
||||
1. Win-Loss Record within the League.
|
||||
1. Win-Loss Record within the division (if applicable).
|
||||
1. Least runs allowed for the season.
|
||||
1. Coin toss, performed by the Commissioner with a witness.
|
||||
|
||||
### Postseason Format
|
||||
The postseason format shall be determined by annual vote.
|
||||
Win-loss record shall be computed using the point system as defined in [League Standings](#league-standings).
|
||||
|
||||
### Prizes and Awards
|
||||
Playoff prizes and awards, if any, shall be determined by the membership of the league.
|
||||
### Awards
|
||||
Awards, if any, shall be determined by annual vote before the start of the regular season.
|
||||
|
||||
### Playoff Umpire Selection
|
||||
For the playoffs, each team will be granted the ability to exclude one (1) particular umpire from participating in said teams series. The name of this umpire shall be submitted to the chief umpire as soon as possible prior to the series. This umpire “veto” will be binding UNLESS the chief umpire cannot find any other umpire who can work any game in this series.
|
||||
### Postseason
|
||||
#### Postseason Format
|
||||
The postseason format shall be determined by annual vote before the start of the regular season.
|
||||
|
||||
### Completion of Playoff Games
|
||||
All playoff games must be played to completion. If a playoff game is suspended for any reason, the game must be finished at a later date declared by the Commissioner. This game is declared suspended, and regardless of what inning or circumstance, the game will be continued from the point in the game when it was suspended. The “Slaughter Rule” is applicable for the playoffs (see [Regulation Games](#regulation-games)).
|
||||
#### Prizes
|
||||
Prizes, if any, shall be determined by annual vote before the start of the regular season.
|
||||
|
||||
#### Postseason Umpire Selection
|
||||
For the postseason, each team may request the exclusion of one (1) particular umpire from participating in said team's series. The individual responsible for assigning umpires will make a reasonable effort to respect the team's request.
|
||||
|
||||
#### Postseason Player Eligibility
|
||||
Players must appear in at least five (5) regular-season games to be eligible for postseason play. Upon request to the Commissioner, an exception may be granted for a player with a long-term injury. Alumni Players are not eligible to play in the postseason.
|
||||
|
||||
#### Postseason Games
|
||||
All postseason games shall use the Restricted Lineup Format, as defined in the Playing Rules.
|
||||
|
||||
All playoff games must be played to completion. If a postseason game is duly called by the umpire for any reason, the game is considered suspended. The game will be continued from the point in the game when it was suspended at a later date provided by the Commissioner. Lineup changes shall be subject to the Playing Rules governing substitution.
|
||||
|
||||
The run-rule, or“Slaughter Rule”, is applicable in postseason play.
|
||||
|
||||
## Game Administration
|
||||
### Subjectivity
|
||||
No official playing rule or League policy may be suspended, set aside, or added to under any circumstances, regardless of the will of the Managers. This provision nullifies the “If both managers agree” concept.
|
||||
|
||||
### Playing Rules
|
||||
Play shall be governed by the League's playing rules document (the "Playing Rules").
|
||||
|
||||
### Interleague Play
|
||||
Unless otherwise specified through official League communications, play shall be in accordance with the hosting team's league playing ruleset, thus becoming the Playing Rules. A playing ruleset includes such rules as equipment, lineups, substitutions, and length of games.
|
||||
|
||||
All League policies, including but not limited to, League standings, forfeit, and discipline shall remain in effect.
|
||||
|
||||
### Pre-Game
|
||||
#### Field Status
|
||||
The host team of the field shall be responsible for checking the status of the field in the event of rain. In the event neither team is the host of the field, the home team shall be the responsible team. The responsible team must report the status of the field to the Commissioner and the assigned umpire no later than 2:00 pm for a weeknight game, and at least 2 hrs. before a weekend game. As a courtesy, the responsible team should also notify the visiting Manager, but the visiting Manager may also contact the Commissioner for information regarding the status of the field.
|
||||
@@ -350,47 +399,49 @@ In the discretion of the Commissioner, a game may be postponed due to extraordin
|
||||
Any postponed or suspended games must be rescheduled in a timely fashion by the Managers of that game for the next possible date. If Managers cannot come to an agreement in a timely fashion, the Commissioner may reschedule the game.
|
||||
|
||||
### In-Game
|
||||
#### Lineup format
|
||||
In regular season play, teams shall use the Expanded Lineup Format, as defined in the Playing Rules.
|
||||
|
||||
#### Baseballs
|
||||
Professional-, college-, or high school-grade baseballs will be allowed for game play. Accepted brands and ball types include, but are not limited to, the Rawlings RO series, Wilson A1000 series, and Diamond D-1 series.
|
||||
|
||||
The home team must supply two (2) and the visitors one (1) baseball at the start of each game. Supplied baseballs should be new, however in rare extenuating circumstances, previously used baseballs may be used if they are in good playable condition and approved by the umpire. Additional balls shall be supplied alternately by each team beginning with the visiting team. Teams that supply non-approved balls may face displine up to and including forfeit of the game.
|
||||
Unless otherwise supplied, the home team must supply two (2) and the visitors one (1) baseball at the start of each game. Supplied baseballs should be new, however in rare extenuating circumstances, previously used baseballs may be used if they are in good playable condition and approved by the umpire. Additional balls shall be supplied alternately by each team beginning with the visiting team. Teams that supply non-approved balls may face discipline up to and including forfeit of the game.
|
||||
|
||||
#### Bats
|
||||
All bats must be wood or BBCOR certified. Use of an illegal bat shall be subject to the Major League rules that govern this area.
|
||||
|
||||
#### Bases, home plate, and pitching rubber
|
||||
All teams are expected to have a set of bases, a home plate, and a pitching rubber. These items shall conform to Major League Baseball specifications. Items conforming to 2022 specifications shall also be considered legal.
|
||||
All teams are expected to have a set of bases, a home plate, and a pitching rubber. These items shall conform to applicable Playing Rules.
|
||||
|
||||
The host team for the field shall be responsible for accurately setting up the bases, and if necessary, home plate and the pitching rubber. In the event neither team is host of the field, the home team shall have this responsibilty. Should the responsible team fail to have these necessities by the start of the game, they will lose by forfeit. The visiting team may lend the equipment, although they are not required to do so.
|
||||
The host team for the field shall be responsible for accurately setting up the bases, and if necessary, home plate and the pitching rubber. In the event neither team is host of the field, the home team shall have this responsibility. Should the responsible team fail to have these necessities by the start of the game, they will lose by forfeit. The visiting team may lend the equipment, although they are not required to do so.
|
||||
|
||||
#### Uniforms
|
||||
Uniform compliance is required in order to protect League competitive integrity, roster transparency, and game administration.
|
||||
|
||||
1. Required uniform elements are:
|
||||
1. Team jersey bearing the team identity;
|
||||
1. Team jersey and cap bearing the team identity;
|
||||
1. A unique uniform number assigned to that Player;
|
||||
1. Baseball pants.
|
||||
1. A Player may not wear or borrow another rostered Player’s jersey or number to satisfy this rule.
|
||||
1. By each Member Franchise’s first regular-season game, all rostered Players are required to be in compliant uniforms.
|
||||
1. If a Member Franchise cannot meet full compliance due to extenuating circumstances, its Manager must notify the Commissioner or designated League officer before game time, state the reason, and provide a date certain for correction.
|
||||
1. Any Manager who observes a material uniform violation is encouraged to report it promptly to the Commissioner. Reporting does imply a request for forfeit. Umpires are also encouraged to note and report uniform issues.
|
||||
1. Any Manager who observes a material uniform violation is encouraged to report it promptly to the Commissioner. Reporting does not imply a request for forfeit. Umpires are also encouraged to note and report uniform issues.
|
||||
1. The Commissioner may impose discipline for uniform non-compliance, including warnings, corrective deadlines, fines, temporary player ineligibility, and other remedies authorized by League rules. In determining the appropriate discipline, the Commissioner may consider factors including bad faith, repeated non-compliance, and refusal to comply with a League directive. Penalties may be imposed up to and including game forfeits.
|
||||
|
||||
#### Umpires
|
||||
Umpires shall have the sole responsibility for the enforcement of all sections in [Team Rosters Players And Eligibility](#team-rosters-players-and-eligibility) of the Bylaws, except where specified.
|
||||
Umpires shall have the sole responsibility for the enforcement of the Playing Rules.
|
||||
|
||||
Umpires are to be paid on the field promptly upon request.
|
||||
|
||||
Should a league sanctioned umpire fail to appear at game time, the teams can choose to play the game with an umpire(s) of mutual choosing. The Commissioner needs to be informed by both teams prior to the start of the game to make it official.
|
||||
|
||||
#### Minimum Number of Players
|
||||
Forfeit time shall be 20 minutes after the scheduled starting time. If a ninth player does not arrive or arrives after forfeit time, the team shall be in technical forfeit, as defined in [Forfeits](#forfeits).
|
||||
Forfeit time shall be 20 minutes after the scheduled starting time.
|
||||
|
||||
1. A team may begin a game with eight (8) players up to two (2) times in one season. A team that fails to field nine (9) players at the start of the game after receiving 2 (two) prior technical forfeits shall forfeit all subsequent games.
|
||||
1. A team in technical forfeit shall remain in technical forfeit, regardless of the number of players with which it finished the game.
|
||||
|
||||
If a ninth player does not arrive or arrives after forfeit time, the team shall be in technical forfeit, as defined in [Forfeits](#forfeits).
|
||||
If a ninth player does not arrive or arrives after forfeit time, play may continue, but the short team shall be in technical forfeit, as defined in [Technical Forfeit](#technical-forfeit).
|
||||
|
||||
#### Protests
|
||||
Protests may only be made on the grounds of a violation of a rule stated in League policy or playing rules. Protests may not, under any circumstances, be based on the judgment of an umpire’s call. The protesting team’s Manager must notify the umpire of the protest at the time the violation occurred.
|
||||
@@ -412,7 +463,7 @@ Upon the filing of a protest, the Commissioner may request advisory review or co
|
||||
|
||||
### Game Outcomes
|
||||
|
||||
#### Technical forfeit
|
||||
#### Technical Forfeit
|
||||
If a team is in technical forfeit status, the game may proceed as permitted by Playing Rules, but the following applies:
|
||||
|
||||
1. A team in technical forfeit that wins shall receive one (1) standings point for that game.
|
||||
@@ -425,7 +476,7 @@ The opponent of a team in technical forfeit is entitled to a full (2) standings
|
||||
#### Forfeit
|
||||
If a game is forfeited, the following applies:
|
||||
|
||||
1. The forfeiting team must pay, at the time of the forfeit, the full cost of the umpire(s), and shall be considered not in good standing as defined in [Classification; Standing](#classification-standing). Teams will be considered not in good standing until payment is made.
|
||||
1. The forfeiting team shall be considered not in Good Standing. Teams will be considered not in Good Standing until payment is made.
|
||||
1. The forfeiting team shall receive a loss and a minus two (-2) point standings penalty.
|
||||
1. The non-forfeiting team shall receive a 7 runs to 0 runs win in the standings and is entitled to a full (2) standings points.
|
||||
1. The forfeiting team must pay the full cost of umpire fees for the forfeited game.
|
||||
@@ -1,116 +1,148 @@
|
||||
# Playing Rules
|
||||
|
||||
## Authority and Rule Hierarchy
|
||||
Umpires have full authority to administer and enforce game rules on the field. In applying written rules, the controlling order is: (1) League Policy, (2) these Playing Rules, and (3) Incorporated Rules. If provisions conflict, the higher-priority source controls to the extent of the conflict.
|
||||
|
||||
## Incorporated Rules
|
||||
Except where specified in this document, games shall incorporate the Official Baseball Rules of Major League Baseball (the "Incorporated Rules").
|
||||
|
||||
These rules shall *not* incorporate the following rules of Major League Baseball:
|
||||
|
||||
- Rule 4.03(c)(4) specifying limitations on when a position player can pitch.
|
||||
- Rule 5.02(c) specifying limitations on infielder placement.
|
||||
- Rule 7.01(b) incorporating the parameters of the Extra Innings Rule, which includes starting each half-inning following the last regulation inning with a runner on second base.
|
||||
- Rule 5.10(m)(1) limiting the number of mound visits.
|
||||
- Rule 5.10(g) requiring that pitchers must face at least three batters.
|
||||
- Rules 5.07(c) specifying time limits on pitchers and batters. Limitations on pitcher disengagements (i.e. pick-offs) shall also not be incorporated.
|
||||
- Rule(s) specifying limitations on when a position player can pitch.
|
||||
- Rule(s) specifying limitations on infielder placement.
|
||||
- Rule(s) incorporating the parameters of the Extra Innings Rule, which includes starting each half-inning following the last regulation inning with a runner on second base.
|
||||
- Rule(s) limiting the number of mound visits per game. Limitations on visits per inning still apply.
|
||||
- Rule(s) requiring that pitchers must face at least three batters.
|
||||
- Rule(s) specifying time limits on pitchers and batters.
|
||||
- Rule(s) limiting pitcher disengagements (i.e. pick-offs).
|
||||
- Rule(s) enlarging bases from 15 inches square to 18 inches square. Either base size is acceptable as long as each base used in the game are the same size.
|
||||
- Any rule requiring specialized equipment or trained personnel, such as replay review.
|
||||
|
||||
## Pre-Game Meeting
|
||||
Before first pitch, the Managers and the umpire-in-chief shall conduct a pre-game meeting. A Manager may designate a team delegate to attend on the Manager’s behalf. At this meeting, the teams shall exchange lineups and review any applicable ground rules with the umpire.
|
||||
|
||||
## Regulation Games
|
||||
Games played under the auspices of both recognized Managers of the participating teams shall count as official. A regulation game is defined as follows
|
||||
|
||||
1. A regulation game consists of seven (7) innings, unless extended because of a tie score, or shortened because the home team needs none of its half of the seventh inning or only a fraction of it, or because the umpire calls the game in accordance with [Reasons for a Game to be Called](#reasons-for-a-game-to-be-called).
|
||||
1. If the score is tied after seven completed innings play shall continue until (1) the visiting team has scored more total runs than the home team at the end of a completed inning, or (2) the home team scores the winning run in an uncompleted inning. If a regulation game is called with the score tied, it shall remain a tie game.
|
||||
1. If a game is called by the umpire, per [Reasons for a Game to be Called](#reasons-for-a-game-to-be-called), it is a regulation (official) game:
|
||||
1. If four innings have been completed;
|
||||
1. If the home team has scored more runs in four or three and a fraction half-innings than the visiting team has scored in four completed half-innings;
|
||||
1. If the home team scores one or more runs in its half of the fourth inning to tie the score.
|
||||
|
||||
Postseason games are exempt from this definition as specified in [Completion of Playoff Games](#completion-of-playoff-games).
|
||||
1. Slaughter Rule: The game shall be ended and the leading team declared the winner:
|
||||
1. If after 4 complete innings the visiting team is ahead in the score by 15 or more runs, or if after 3½ innings the home team is ahead by the same, the game will be ended and the leading team declared the winner.
|
||||
1. If after 5 or more complete innings the visiting team is ahead in the score by 12 or more runs, or if after 4½ innings or more the home team is ahead by the same, the game will be ended and the leading team declared the winner.
|
||||
1. A regulation game is scheduled for seven (7) innings.
|
||||
1. A game becomes a regulation game after four (4) completed innings, or after 3 1/2 innings if the home team is ahead.
|
||||
1. If the score is tied after seven (7) completed innings, play shall continue until a winner is determined, unless the game is called and recorded as a tie under applicable called-game provisions.
|
||||
1. The run-rule, or "Slaughter Rule", thresholds are:
|
||||
1. Fifteen (15) runs after four (4) complete innings, or after 3 1/2 innings if the home team is ahead;
|
||||
1. Twelve (12) runs after five (5) complete innings, or after 4 1/2 innings if the home team is ahead.
|
||||
1. Ten (10) runs after three (3) complete innings in a game that is called under applicable called-game provisions.
|
||||
1. If a game is called before it becomes a regulation game, it is a “No Game” and shall be replayed from the start, unless otherwise required by provisions in League Policy.
|
||||
1. Exceptions, including completion requirements for suspended games, are governed by League Policy (e.g., in the case of playoff or championship games).
|
||||
|
||||
The Slaughter Rule is applicable for the playoffs as specified in [Completion of Playoff Games](#completion-of-playoff-games).
|
||||
1. If a game is called after 3 complete innings and one team is ahead by 10 or more runs, the game will be ended and the leading team declared the winner.
|
||||
|
||||
Postseason games are exempt from this definition as specified in [Completion of Playoff Games](#completion-of-playoff-games).
|
||||
|
||||
1. If a game is postponed or otherwise called before it has become a regulation game, the umpire-in-chief shall declare it “No Game,” meaning the game must be restarted (not resumed) at a later date.
|
||||
|
||||
Postseason games are exempt from this definition as specified in [Completion of Playoff Games](#completion-of-playoff-games).
|
||||
|
||||
## Reasons for a Game to be Called
|
||||
### Reasons for a Game to be Called
|
||||
An umpire, in their discretion, may declare a game called if
|
||||
|
||||
1. Darkness prevents further safe play.
|
||||
1. Rain, lightning, or other inclement weather precludes safe conditions.
|
||||
1. A new inning would start after 8:15 p.m at a field without lights.
|
||||
1. Local laws or field rules (e.g. lightning detector) prevent continuation of the game.
|
||||
1. Other circumstances prevent further safe play. The Rules and Competition Committee may rule on any forfeit or loss of points as applicable.
|
||||
1. Other circumstances prevent further safe play. League Policy may dictate any forfeit or penalty as applicable.
|
||||
|
||||
## Game Equipment and Uniforms
|
||||
Games shall be played with legal baseball equipment and player uniforms as required by League Rules and Policy.
|
||||
|
||||
## Minimum Number of Players
|
||||
Teams must start the game at the scheduled starting time if they have a minimum of (8) players present. League policy may designate a forfeit time after which a team with less than the minimum is subject to forfeit. A team may not wait until this forfeit time for players to arrive. The game must begin as soon as a team reaches this minimum.
|
||||
## Lineups
|
||||
|
||||
1. In the event a team starts a game with eight (8) players, the ninth spot in the batting order shall be considered an out recorded to the pitcher. A team may insert a ninth player in the vacant ninth spot after the start of play.
|
||||
1. The vacated spot in the batting order shall be considered an automatic out.
|
||||
1. Should a team fall below the minimum, the game is terminated and the team loses by forfeit.
|
||||
### Lineup Format
|
||||
The [Expanded Lineup Format](#expanded-lineup-format) shall apply unless League Policy expressly provides for the Restricted Lineup Format (e.g., playoffs or championship games).
|
||||
|
||||
A team may finish the game a player short, that is one (1) player less than they started the game with (eight (8) players for a nine (9) man line-up, nine (9) players for a ten (10) man), provided the team does not fall below this minimum.
|
||||
### Expanded Lineup Format
|
||||
|
||||
In the Expanded Lineup Format, a team’s batting lineup shall constitute not fewer than nine (9) batting positions. Additional batting positions may be declared at lineup exchange without limit. The number of batting positions declared shall remain fixed for the duration of the game. If, for any other reason, a batting position is or becomes unoccupied, that lineup position shall be recorded as an out each time it appears in the batting order.
|
||||
|
||||
A player substituted from the batting order may not re-enter the batting order unless otherwise permitted herein. Defensive substitutions may be made freely at any time and do not affect the batting order. Players may enter, exit, and re-enter defensively without limitation.
|
||||
|
||||
The following lineup designations are permitted, but not required, in the Expanded Lineup Format:
|
||||
|
||||
- Any number of Extra Hitters
|
||||
- (1) Designated Runner
|
||||
- Courtesy Runner for the pitcher and catcher
|
||||
|
||||
!!! Note
|
||||
A player occupying the Extra Hitter position may assume any defensive position at any time without affecting the batting order. Likewise, a player currently in the defensive alignment may be reassigned to the Extra Hitter position without affecting the batting order. In the Expanded Lineup Format, changes in defensive alignment do not alter the order or occupancy of batting positions.
|
||||
|
||||
Because defensive alignment does not govern the batting order in the Expanded Lineup Format, the Designated Hitter designation does not apply in Expanded Lineup Format. Any player marked as a DH will be considered a mistake and assumed to be an EH.
|
||||
|
||||
#### Shared Batting Positions
|
||||
In the Expanded Lineup Format, any batting position may be designated at lineup exchange as shared by two players (“A” and “B”). The two players shall bat in alternating sequence each time that position appears in the order, beginning with the player designated “A.”
|
||||
|
||||
A player occupying a shared batting position may be substituted. A substitute assumes the same alternating designation (A or B), and the position remains shared provided two occupants are maintained.
|
||||
|
||||
If a shared batting position is reduced to a single occupant and no substitute is entered to maintain two occupants, the position shall thereafter be treated as a single-player position and may not again be shared during that game.
|
||||
|
||||
### Restricted Lineup Format
|
||||
In the Restricted Lineup Format, a team’s batting lineup shall constitute not fewer than nine (9) batting positions. Additional batting positions may be declared at lineup exchange without limit by using additional Extra Hitters. The number of batting positions declared shall remain fixed for the duration of the game.
|
||||
|
||||
Each batting position shall be occupied by a single player. Shared batting positions are not permitted.
|
||||
|
||||
If, for any other reason, a batting position is or becomes unoccupied, that lineup position shall be recorded as an out each time it appears in the batting order, unless otherwise provided in the Incorporated Rules, these Rules, or League Policy.
|
||||
|
||||
A player substituted from the batting order may not re-enter the game unless permitted by the Incorporated Rules. Defensive substitutions shall be governed by the Incorporated Rules. Defensive re-entry is not permitted unless otherwise allowed by those rules.
|
||||
|
||||
The following lineup designations are permitted, but not required, in Restricted Lineup Format:
|
||||
|
||||
- (1) Designated Hitter
|
||||
- Any number of Extra Hitters
|
||||
- (1) Designated Runner
|
||||
- Courtesy Runner for the pitcher and catcher
|
||||
|
||||
### Minimum Number of Players
|
||||
The minimum number of players per team shall be established as the number of required batting positions as governed by the applicable Lineup Format.
|
||||
|
||||
Teams may play with (1) fewer player and if each team has at least this many players present, they must start the game.
|
||||
|
||||
League Policy may apply standings penalty for teams that start with fewer than the minimum. League Policy may also designate a "forfeit time," the period after which a team with less than the minimum is subject to penalty. A team may not wait until this forfeit time for players to arrive. A team may insert a player into the vacant spot after the start of play.
|
||||
|
||||
Any unoccupied batting positions are shall be recorded as an out each time it appears in the batting order unless otherwise provided in these Rules, or League Policy.
|
||||
|
||||
A team may finish the game (1) player short, that is one (1) player less than they started the game with (eight (8) players for a nine (9) person line-up, nine (9) players for a ten (10) person lineup). Should a team fall below (8) players, the game is terminated and this team loses by forfeit.
|
||||
|
||||
!!! Note "Example"
|
||||
For a game subject to the Expanded Lineup, the required number of batting positions is nine (9), so as soon as each team has eight (8) players, the game must start.
|
||||
|
||||
If a team starts with (8) the vacant ninth spot is an automatic out each time it comes up. If the ninth player arrives after first pitch, that player may be inserted into the vacant spot.
|
||||
|
||||
|
||||
### Lineup Designations
|
||||
#### Designated Hitter (DH)
|
||||
A Designated Hitter may bat for any defensive player. If the defensive player for whom the DH bats enters the batting order, the DH is terminated. Substitution rules apply consistent with the applicable Lineup Format.
|
||||
|
||||
#### Extra Hitter (EH)
|
||||
|
||||
An Extra Hitter is a batting-only lineup position and may not be used in the field as an extra defensive fielder. For substitution and lineup-administration purposes, an EH position shall be treated the same as a defensive position and may be substituted, re-entered, or reassigned in as governed by the applicable Lineup Format.
|
||||
|
||||
#### Designated Runner (DR)
|
||||
A Designated Runner may run for a specified batting position whenever the player occupying that batting position safely reaches base. The DR may be subsituted into the batting order at any batting position. Once the player designated as DR enters the batting lineup, the player is no longer considered a designated runner and may no longer run for the previously assigned batting position. Substitution of either player is governed by the applicable Lineup Format.
|
||||
|
||||
Teams with no eligible players remaining on the bench (i.e. all players are in the batting lineup) may elect to use the player that made the last out as the designated runner.
|
||||
|
||||
#### Courtesy Runner (CR)
|
||||
A Courtesy Runner may be used for pitchers or catchers at any time. It is not mandatory to do so.
|
||||
|
||||
A Courtesy Runner must not otherwise have participated in the game unless no eligible substitute remains. In this case, teams must use the first player taken out of the game or the player that made the last out.
|
||||
|
||||
Pitchers or catchers must record at least one (1) defensive out to be eligible, unless reaching base in the first inning as the visiting team.
|
||||
|
||||
### Injury Substitutions
|
||||
Substitutions are governed by the applicable Lineup Format with the following exception:
|
||||
|
||||
## Player Injuries
|
||||
Should a player suffer a debilitating injury during the game and cannot continue, and a team has no more eligible players on its bench, a team can use a player that was removed from the game to replace him. This replacement player must be the first player removed from the game, and if this player is unavailable the next player is used (and so on). If no reserve is present, the vacated spot in the lineup is skipped and all batters move up accordingly, with no penalty to the affected team.
|
||||
|
||||
1. If a substantial case can be made that a team skipped a spot with the intent to gain a competitive advantage, a protest by the opposing team may retroactively be ruled as a forfeit.
|
||||
|
||||
## Designated Hitter
|
||||
The League shall follow the designated hitter rule as set forth in the Incorporated Rules, with the exception that a team may designate a D.H. for any position on the field.
|
||||
|
||||
## Designated Runner
|
||||
The League shall elect to use a designated runner rule, similar to the designated hitter rule.
|
||||
|
||||
1. A runner may be designated to run for a specified player in any game without otherwise affecting the status of the player(s) in the game.
|
||||
1. The designated runner must take the place of the specified player whenever that player reaches base or the designated runner.
|
||||
1. If the specified player is substituted, this substitute player may inherit the designated runner.
|
||||
1. Designated runners are subject to the same substitution rules as the designated hitter as defined in [Designated Hitter](#designated-hitter)
|
||||
1. Teams with no eligible players remaining on the bench (i.e. all players are in the batting lineup) may elect to use the player that made the last out as the designated runner.
|
||||
|
||||
## Extra Hitter
|
||||
Prior to the start of the game a team may choose to play an extra hitter (EH). If the team uses this option, the following conditions apply:
|
||||
|
||||
1. An EH shall only bat. They cannot take a position in the field as a tenth fielder.
|
||||
1. The EH shall be treated like any other position in the field, and can be substituted for, switch positions, or anything else that a position player can do.
|
||||
1. There is no limit to the number of extra hitters a team may elect to use, provided the names and numbers of these players are included in the lineup exchanged before the game.
|
||||
|
||||
## Courtesy Runner
|
||||
Teams may use courtesy runners for pitchers and catchers at any time. It is not mandatory to do so (speed-up rule), but the umpire(s) are required to keep the game moving expeditiously.
|
||||
|
||||
1. Courtesy runners for pitchers and catchers cannot be, or have been, in the game at any time other than as a courtesy runner. Teams with no eligible players remaining on the bench must use the first player taken out of the game or the player that made the last out.
|
||||
1. The pitcher or catcher must play at least one (1) defensive out to be eligible for a courtesy runner unless they reach base in the first inning as a member of the visiting team.
|
||||
|
||||
## Batting Lineup
|
||||
The batting lineup shall consist of at minimum 9 slots (or 8 adhering to section [Minimum Number of Players](#minimum-number-of-players)). Additional slots may be used without limit (see [Extra Hitter](#extra-hitter)). Any player may be substituted in their batting lineup slot by using a pinch-hitter or pinch-runner for that player. The original player may not re-enter the game as a hitter.
|
||||
|
||||
## A/B Batting Lineup Slots
|
||||
In regular season play, any batting lineup slot may be optionally designated as an "A/B" batting slot, meaning it is shared between two players adhering to the following rules:
|
||||
|
||||
1. The batter designated "A" shall bat the first time through the lineup and the batter designated "B" batting the second time through the lineup, continuing in alternating fashion for the remainder of the game.
|
||||
2. Rules for the substitutions of either "A" or "B" batter are the same as any other batting lineup slot.
|
||||
3. In the event of injury of either player when there are no reserve players available, the uninjured player shall bat in place of the injured player without penalty.
|
||||
|
||||
In postseason play, the A/B batting slot rule defined above shall not be applicable.
|
||||
|
||||
## Defensive Lineup
|
||||
In regular season play, the defensive line-up is independent of the batting lineup and substitutions shall be allowed as follows:
|
||||
|
||||
1. Any player may be freely substituted in the defensive line-up at any time, without affecting the players’ in the batting line-up. Players may enter, exit, and re-enter the game in the defensive line-up without limitation.
|
||||
|
||||
In postseason play, the free defensive substitution rule defined above shall not be applicable and substitutions shall be made in accordance to applicable League and Incorporated Rules.
|
||||
If a substantial case can be made that a team skipped a spot with the intent to gain a competitive advantage, the pending team may be subject to penalty, up to and including forfeit following a successful protest in accordance with League Policy.
|
||||
|
||||
## Collisions
|
||||
Collisions are prohibited, except for contact that results from a legal slide. The runner is responsible for sliding or otherwise avoiding contact. Fielders and runners must comply with Incorporated Rules governing interference, obstruction, and collisions at home plate.
|
||||
|
||||
Unless the umpire rules that the contact was incidental or caused by fielder obstruction, the runner shall be called out, the ball declared dead, and the runner automatically ejected. If the umpire determines the collision was flagrant, additional penalties may be imposed as applicable in League policy.
|
||||
Unless the umpire rules that the contact was incidental or caused by fielder obstruction, the runner shall be called out, the ball declared dead, and the runner automatically ejected. If the umpire determines the collision was flagrant, additional penalties may be imposed as applicable in League Policy.
|
||||
|
||||
## Umpire Disputes
|
||||
Any umpire’s decision which involves judgment, as specified in the Incorporated Rules, are final. No player or manager shall object to any such judgment decisions. The appeal of umpire decisions shall be governed as set forth in the Incorporated Rules. No player, manager, coach or substitute shall object to judgment decisions. If there is reasonable doubt that any umpire’s decision may be in conflict with the rules, the manager may appeal the decision and ask that a correct ruling be made.
|
||||
The appeal of umpire decisions shall be governed as set forth in the Incorporated Rules. Any protests must be made in accordance with League Policy.
|
||||
|
||||
!!! Note "Generally"
|
||||
- Any umpire’s decision which involves judgment are final. No player or manager shall object to any such judgment decisions.
|
||||
- If there is reasonable doubt that any umpire’s decision may be in conflict with the rules, the Manager, and the Manager alone, may appeal the decision and ask that a correct ruling be made.
|
||||
|
||||
File diff suppressed because one or more lines are too long
|
Before Width: | Height: | Size: 199 KiB After Width: | Height: | Size: 81 KiB |
12
docs/assets/square-no-word.svg
Normal file
12
docs/assets/square-no-word.svg
Normal file
File diff suppressed because one or more lines are too long
|
After Width: | Height: | Size: 44 KiB |
@@ -1 +1,34 @@
|
||||
# CMBA Constitution and By-Laws
|
||||
<p>
|
||||
<img src="assets/cmba-logo.svg" width="300" alt="CMBA logo">
|
||||
</p>
|
||||
# CMBA Bylaws, Policy, and Playing Rules
|
||||
|
||||
Welcome to the governing documents for the Chicago Metropolitan Baseball Association.
|
||||
|
||||
This site brings together the league's core rules in a single place so managers, players, and league officials can quickly find the current governing text.
|
||||
|
||||
## Documents
|
||||
|
||||
- [League Bylaws](01-bylaws.md): the league's organizational structure, board authority, membership framework, meetings, and amendment process
|
||||
- [League Policy](02-policy.md): league operations, procedures, discipline, administration, and competition governance
|
||||
- [Playing Rules](03-playing-rules.md): on-field rules, lineup formats, game administration, and incorporated baseball rules
|
||||
|
||||
## How to Use This Site
|
||||
|
||||
- Start with the Bylaws for questions about league authority, governance, and membership.
|
||||
- Use League Policy for operational questions, discipline, roster administration, and league procedures.
|
||||
- Use Playing Rules for game-day and on-field questions.
|
||||
|
||||
## Rule Hierarchy
|
||||
|
||||
If documents overlap or appear to conflict, the controlling order is generally:
|
||||
|
||||
1. Bylaws
|
||||
2. League Policy
|
||||
3. Playing Rules
|
||||
|
||||
For on-field administration, the Playing Rules also incorporate the Official Baseball Rules of Major League Baseball except where CMBA rules provide otherwise.
|
||||
|
||||
## About the CMBA
|
||||
|
||||
The Chicago Metropolitan Baseball Association exists to provide strong amateur baseball competition in Illinois and the Midwest, with an emphasis on competitive play, sportsmanship, and league continuity.
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
site_name: CMBA Constitution and By-Laws
|
||||
site_name: CMBA Bylaws, Policy, and Playing Rules
|
||||
docs_dir: ../docs
|
||||
|
||||
# Prevent accidental publishing of repo/CI/dev clutter
|
||||
@@ -26,8 +26,8 @@ markdown_extensions:
|
||||
# - tables
|
||||
nav:
|
||||
- Home: index.md
|
||||
- 01-constitution-and-bylaws.md
|
||||
- 02-league-rules-and-policy.md
|
||||
- 01-bylaws.md
|
||||
- 02-policy.md
|
||||
- 03-playing-rules.md
|
||||
|
||||
plugins:
|
||||
|
||||
@@ -22,4 +22,5 @@ dictionaries:
|
||||
words:
|
||||
- cmba
|
||||
- chicagoland
|
||||
- gitdriver
|
||||
- gitdriver
|
||||
- mkdocs
|
||||
Reference in New Issue
Block a user