Compare commits
18 Commits
2abc433e4b
...
draft2026.
| Author | SHA1 | Date | |
|---|---|---|---|
|
7e3693857e
|
|||
|
5d3c65bd76
|
|||
|
90e90f8373
|
|||
|
0beaad0401
|
|||
|
b503075277
|
|||
|
5167aef0b8
|
|||
|
c16e25a738
|
|||
|
2e68515e2c
|
|||
|
a2fbd002f0
|
|||
|
9664558722
|
|||
|
8ffb67cb2c
|
|||
|
f8a9aa0f9a
|
|||
|
d8dea75d89
|
|||
|
7ff57a159a
|
|||
|
d7255d2aaa
|
|||
|
168ddeba15
|
|||
|
404464f14c
|
|||
|
b8c4267efa
|
2
.github/workflows/ci-docs.yml
vendored
2
.github/workflows/ci-docs.yml
vendored
@@ -4,7 +4,7 @@ on:
|
|||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
- develop
|
- draft
|
||||||
- release-candidate
|
- release-candidate
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
|
|||||||
77
README.md
77
README.md
@@ -1,27 +1,82 @@
|
|||||||
<p align="center">
|
<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>
|
</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
|
### 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
|
## 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,4 +1,4 @@
|
|||||||
# Constitution and Bylaws
|
# League Bylaws
|
||||||
|
|
||||||
## Name
|
## 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.
|
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.
|
||||||
@@ -7,10 +7,10 @@ The name of the corporation as incorporated and existing under and by virtue of
|
|||||||
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.
|
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
|
## 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
|
## 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 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.
|
||||||
|
|
||||||
@@ -18,10 +18,10 @@ Notwithstanding any other provisions of this Constitution and Bylaws (the "Bylaw
|
|||||||
|
|
||||||
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.
|
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.
|
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.
|
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
|
## 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.
|
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
|
### 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
|
### 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
|
### Compensation
|
||||||
The Directors shall serve without compensation.
|
The Directors shall serve without compensation.
|
||||||
@@ -43,7 +43,7 @@ The Directors shall serve without compensation.
|
|||||||
## Officers
|
## Officers
|
||||||
|
|
||||||
### Designation
|
### 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
|
### Resignation and Removal
|
||||||
|
|
||||||
@@ -52,15 +52,15 @@ Any Officer may resign by written notice delivered to the Board of Directors or
|
|||||||
## Officer Duties
|
## Officer Duties
|
||||||
|
|
||||||
### Commissioner
|
### Commissioner
|
||||||
The Commissioner shall
|
The Commissioner shall
|
||||||
|
|
||||||
1. Preside at meetings of the Membership and of the Board of Directors.
|
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. 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. 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
|
### 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
|
### 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.
|
||||||
@@ -68,10 +68,17 @@ The Secretary shall have the custody and care of the corporate records of the Le
|
|||||||
### Compensation
|
### Compensation
|
||||||
The Officers shall serve without 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
|
## Meetings of the Board
|
||||||
|
|
||||||
### Annual Meeting
|
### 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
|
||||||
Additional meetings of the Board of Directors may be called by the Commissioner or any Director.
|
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
|
### 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.
|
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
|
## Miscellaneous
|
||||||
|
|
||||||
### Drafts, Checks, Deposits
|
### 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.
|
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
|
## 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
|
## 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
|
## 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
|
### 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 shall have the right to appeal disciplinary or eligibility decisions affecting them in accordance with procedures set forth in this document.
|
||||||
1. Each Member Franchise is entitled to one vote in voting matters.
|
1. Each Member Franchise is entitled to one vote in voting matters.
|
||||||
1. Member Franchises may provide input and vote in an advisory capacity on matters of League policy, administration, and operation.
|
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.
|
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.
|
1. Exercise of these rights is contingent upon the Member Franchise being in Good Standing.
|
||||||
|
|
||||||
### Budget
|
### Budget
|
||||||
The Commissioner shall prepare a proposed budget for each fiscal year.
|
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. Annual Member Franchise dues and payment schedule;
|
||||||
1. Other anticipated sources of income;
|
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.
|
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
|
## Amendments and Rule Changes
|
||||||
|
|
||||||
### Constitution and Bylaws
|
### Bylaw Amendments
|
||||||
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.
|
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
|
### League Policy Amendments
|
||||||
1. This Rules and Policy document may be amended to address League operations, administration, discipline, or procedures.
|
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. 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. 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.
|
1. Approved amendments shall take effect as specified at the time of adoption.
|
||||||
|
|
||||||
### Playing Rules Amendments
|
### Playing Rules Amendments
|
||||||
1. Playing rules governing on-field competition may be amended separately from this Rules and Policy document.
|
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. 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. 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 amendments shall not apply retroactively and shall take effect at the start of a season.
|
||||||
|
|
||||||
## League Participants
|
## League Participants
|
||||||
|
|
||||||
@@ -105,7 +107,7 @@ The Commissioner shall review applications for new Member Franchises for complia
|
|||||||
1. Communication with the league;
|
1. Communication with the league;
|
||||||
1. Submission of rosters and player information;
|
1. Submission of rosters and player information;
|
||||||
1. Payment or coordination of all required fees;
|
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. 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.
|
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. Compliance with roster and eligibility requirements;
|
||||||
1. Payment of any applicable fees to their Manager or the League;
|
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.
|
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
|
### Standing and Membership Status
|
||||||
|
|
||||||
1. **In Good Standing**
|
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. 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. 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. **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 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. A temporarily suspended Member Franchise shall have its membership rights suspended for the duration of the suspension.
|
||||||
|
|
||||||
1. **Indefinite 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. 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. Grounds for indefinite suspension may include, but are not limited to:
|
||||||
1. Conduct detrimental to the objectives of the League;
|
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. Failure to comply with codes of conduct set forth in this document.
|
||||||
|
|
||||||
1. **Leave of Absence**
|
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 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.
|
1. A Member Franchise on leave of absence for more than two (2) years must reapply for membership.
|
||||||
|
|
||||||
#### Change of Status
|
#### 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
|
### 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
|
#### 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.
|
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.
|
1. Referral of matters for advisory review or appeal pursuant to this document.
|
||||||
|
|
||||||
### Meetings
|
### 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
|
### 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 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. 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. 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.
|
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
|
### Restrictions
|
||||||
|
|
||||||
@@ -186,7 +188,7 @@ 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.
|
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
|
### 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. 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 in violation of the above shall be placed on temporary suspension for a period of two (2) weeks.
|
||||||
@@ -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. 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.
|
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
|
## Conduct and Discipline
|
||||||
|
|
||||||
### League Standard
|
### 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. Act honestly and in good faith in all League matters.
|
||||||
1. Compete with sportsmanship and respect for opponents, teammates, umpires, and League officials.
|
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. 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.
|
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. Flagrant or intentional dangerous play, including prohibited collisions.
|
||||||
1. Harassment, discriminatory conduct, or abusive language inconsistent with League standards.
|
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. 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
|
### 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.
|
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. Game ejection;
|
||||||
1. Suspension for a specified number of games or period of time;
|
1. Suspension for a specified number of games or period of time;
|
||||||
1. Forfeit or technical forfeit consequences where applicable;
|
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. 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. 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.
|
1. Managers are responsible for the conduct of their players, coaches, and team personnel and may be disciplined for team-related violations.
|
||||||
@@ -242,8 +273,8 @@ Prohibited conduct includes, but is not limited to:
|
|||||||
### Specific Minimum Penalties
|
### Specific Minimum Penalties
|
||||||
Unless stronger discipline is warranted by the circumstances:
|
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 phyiscal fight shall be suspended for three (3) games and fined fifty dollars ($50.00).
|
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. 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).
|
1. A player ejected for a flagrant collision shall be suspended for three (3) games and fined thirty dollars ($30.00).
|
||||||
1. A second offense shall result in suspension for the remainder of the season, including postseason.
|
1. A second offense shall result in suspension for the remainder of the season, including postseason.
|
||||||
@@ -267,12 +298,12 @@ For the safety of all participants and the preservation of serious and competiti
|
|||||||
## Season Administration
|
## Season Administration
|
||||||
|
|
||||||
### Official League Communications
|
### 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
|
### Team Rosters; Players and Eligibility
|
||||||
|
|
||||||
#### Roster Deadline; Roster Size
|
#### 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.
|
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
|
#### Roster Information Requirements
|
||||||
@@ -303,16 +334,16 @@ 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:
|
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. 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. One (1) point for a tie game
|
||||||
1. Zero (0) points for a loss
|
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
|
### 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:
|
In the event two teams finish the regular season in a tie for a position, the following tie-breaking procedure will take effect:
|
||||||
|
|
||||||
1. Win-Loss Record in head-to-head competition.
|
1. Win-Loss Record in head-to-head competition.
|
||||||
1. Win-Loss Record within the league.
|
1. Win-Loss Record within the League.
|
||||||
1. Win-Loss Record within the division (if applicable).
|
1. Win-Loss Record within the division (if applicable).
|
||||||
1. Least runs allowed for the season.
|
1. Least runs allowed for the season.
|
||||||
1. Coin toss, performed by the Commissioner with a witness.
|
1. Coin toss, performed by the Commissioner with a witness.
|
||||||
@@ -330,15 +361,15 @@ The postseason format shall be determined by annual vote before the start of the
|
|||||||
Prizes, if any, shall be determined by annual vote before the start of the regular season.
|
Prizes, if any, shall be determined by annual vote before the start of the regular season.
|
||||||
|
|
||||||
#### Postseason Umpire Selection
|
#### Postseason Umpire Selection
|
||||||
For the postseason, each team may request the exlusion 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.
|
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
|
#### 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.
|
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
|
#### Postseason Games
|
||||||
All postseason games shall use the Retricted Lineup Format, as defined in the Playing Rules.
|
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 rules governing substitution, as specified in the Incoprorated 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.
|
The run-rule, or“Slaughter Rule”, is applicable in postseason play.
|
||||||
|
|
||||||
@@ -374,15 +405,15 @@ In regular season play, teams shall use the Expanded Lineup Format, as defined i
|
|||||||
#### Baseballs
|
#### 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.
|
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.
|
||||||
|
|
||||||
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 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
|
#### 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.
|
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
|
#### 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
|
#### Uniforms
|
||||||
Uniform compliance is required in order to protect League competitive integrity, roster transparency, and game administration.
|
Uniform compliance is required in order to protect League competitive integrity, roster transparency, and game administration.
|
||||||
@@ -410,7 +441,7 @@ 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 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.
|
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
|
||||||
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.
|
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.
|
||||||
@@ -432,7 +463,7 @@ Upon the filing of a protest, the Commissioner may request advisory review or co
|
|||||||
|
|
||||||
### Game Outcomes
|
### 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:
|
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.
|
1. A team in technical forfeit that wins shall receive one (1) standings point for that game.
|
||||||
@@ -445,7 +476,7 @@ The opponent of a team in technical forfeit is entitled to a full (2) standings
|
|||||||
#### Forfeit
|
#### Forfeit
|
||||||
If a game is forfeited, the following applies:
|
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 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 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. The forfeiting team must pay the full cost of umpire fees for the forfeited game.
|
||||||
@@ -13,25 +13,26 @@ These rules shall *not* incorporate the following rules of Major League Baseball
|
|||||||
- 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) 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) 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) requiring that pitchers must face at least three batters.
|
||||||
- Rules(s) specifying time limits on pitchers and batters.
|
- Rule(s) specifying time limits on pitchers and batters.
|
||||||
- Rules(s) limitating pitcher disengagements (i.e. pick-offs).
|
- 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.
|
- Any rule requiring specialized equipment or trained personnel, such as replay review.
|
||||||
|
|
||||||
## Pre-Game Meeting
|
## 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 field or ground rules with the umpire.
|
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
|
## 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
|
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 is scheduled for seven (7) innings.
|
1. A regulation game is scheduled for seven (7) innings.
|
||||||
2. A game becomes a regulation game after four (4) completed innings, or after 3 1/2 innings if the home team is ahead.
|
1. A game becomes a regulation game after four (4) completed innings, or after 3 1/2 innings if the home team is ahead.
|
||||||
3. 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. 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.
|
||||||
4. The run-rule, or "Slaughter Rule", thresholds are:
|
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. Fifteen (15) runs after four (4) complete innings, or after 3 1/2 innings if the home team is ahead;
|
||||||
2. Twelve (12) runs after five (5) complete innings, or after 4 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.
|
||||||
3. Ten (10) runs after three (3) complete innings in a game that is called under applicable called-game provisions.
|
1. Ten (10) runs after three (3) complete innings in a game that is called under applicable called-game provisions.
|
||||||
5. 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. 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.
|
||||||
6. Exceptions, including completion requirements for suspended games, are governed by League Policy (e.g., in the case of playoff or championship games).
|
1. Exceptions, including completion requirements for suspended games, are governed by League Policy (e.g., in the case of playoff or championship 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
|
An umpire, in their discretion, may declare a game called if
|
||||||
@@ -40,7 +41,7 @@ An umpire, in their discretion, may declare a game called if
|
|||||||
1. Rain, lightning, or other inclement weather precludes safe conditions.
|
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. 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. Local laws or field rules (e.g. lightning detector) prevent continuation of the game.
|
||||||
1. Other circumstances prevent further safe play. League policy may dictate any forfeit or penalty as applicable.
|
1. Other circumstances prevent further safe play. League Policy may dictate any forfeit or penalty as applicable.
|
||||||
|
|
||||||
## Game Equipment and Uniforms
|
## Game Equipment and Uniforms
|
||||||
Games shall be played with legal baseball equipment and player uniforms as required by League Rules and Policy.
|
Games shall be played with legal baseball equipment and player uniforms as required by League Rules and Policy.
|
||||||
@@ -48,7 +49,7 @@ Games shall be played with legal baseball equipment and player uniforms as requi
|
|||||||
## Lineups
|
## Lineups
|
||||||
|
|
||||||
### Lineup Format
|
### 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).
|
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).
|
||||||
|
|
||||||
### Expanded Lineup Format
|
### Expanded Lineup Format
|
||||||
|
|
||||||
@@ -56,7 +57,7 @@ In the Expanded Lineup Format, a team’s batting lineup shall constitute not fe
|
|||||||
|
|
||||||
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.
|
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 Expanded Lineup Format:
|
The following lineup designations are permitted, but not required, in the Expanded Lineup Format:
|
||||||
|
|
||||||
- Any number of Extra Hitters
|
- Any number of Extra Hitters
|
||||||
- (1) Designated Runner
|
- (1) Designated Runner
|
||||||
@@ -65,7 +66,7 @@ The following lineup designations are permitted, but not required, in Expanded L
|
|||||||
!!! Note
|
!!! 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.
|
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 apply in Expanded Lineup Format. Any player marked as a DH will be considered an error and assumed to be an EH.
|
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
|
#### 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.”
|
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.”
|
||||||
@@ -79,7 +80,7 @@ In the Restricted Lineup Format, a team’s batting lineup shall constitute not
|
|||||||
|
|
||||||
Each batting position shall be occupied by a single player. Shared batting positions are not permitted.
|
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.
|
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.
|
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.
|
||||||
|
|
||||||
@@ -95,14 +96,14 @@ The minimum number of players per team shall be established as the number of req
|
|||||||
|
|
||||||
Teams may play with (1) fewer player and if each team has at least this many players present, they must start the game.
|
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.
|
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 patting 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.
|
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.
|
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"
|
!!! Note "Example"
|
||||||
For a game subject to the Expanded Lineup, the required batting positions are nine (9), so as soon as each team has eight (8) players, the game must start.
|
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.
|
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.
|
||||||
|
|
||||||
@@ -116,7 +117,7 @@ A Designated Hitter may bat for any defensive player. If the defensive player fo
|
|||||||
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.
|
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)
|
#### Designated Runner (DR)
|
||||||
A Designated Runner may run for a specified batting position whenever the player occupying that batting position safely reaches base. If the defensive player for whom the DR bats enters the batting order, the DR is terminated. Substitution of either player is governed by the applicable Lineup Format.
|
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.
|
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.
|
||||||
|
|
||||||
@@ -132,16 +133,16 @@ Substitutions are governed by the applicable Lineup Format with the following ex
|
|||||||
|
|
||||||
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.
|
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.
|
||||||
|
|
||||||
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 succesful protest in accordance with League policy.
|
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
|
||||||
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.
|
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
|
## Umpire Disputes
|
||||||
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.
|
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"
|
!!! Note "Generally"
|
||||||
- Any umpire’s decision which involves judgment are final. No player or manager shall object to any such judgment decisions.
|
- 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 Manger alone, may appeal the decision and ask that a correct ruling be made.
|
- 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
|
docs_dir: ../docs
|
||||||
|
|
||||||
# Prevent accidental publishing of repo/CI/dev clutter
|
# Prevent accidental publishing of repo/CI/dev clutter
|
||||||
@@ -26,8 +26,8 @@ markdown_extensions:
|
|||||||
# - tables
|
# - tables
|
||||||
nav:
|
nav:
|
||||||
- Home: index.md
|
- Home: index.md
|
||||||
- 01-constitution-and-bylaws.md
|
- 01-bylaws.md
|
||||||
- 02-league-rules-and-policy.md
|
- 02-policy.md
|
||||||
- 03-playing-rules.md
|
- 03-playing-rules.md
|
||||||
|
|
||||||
plugins:
|
plugins:
|
||||||
|
|||||||
@@ -22,4 +22,5 @@ dictionaries:
|
|||||||
words:
|
words:
|
||||||
- cmba
|
- cmba
|
||||||
- chicagoland
|
- chicagoland
|
||||||
- gitdriver
|
- gitdriver
|
||||||
|
- mkdocs
|
||||||
Reference in New Issue
Block a user