Redux · JSON Structure

Redux Store Structure

Structural documentation for the Redux store and its associated concepts.

Type: Properties: 0
Flux ArchitectureFrontendJavaScriptPredictable StateReactState ManagementTypeScript

Redux Store is a JSON Structure definition published by Redux.

Meta-schema:

JSON Structure

redux-store-structure.json Raw ↑
{
  "name": "Redux Store",
  "description": "Structural documentation for the Redux store and its associated concepts.",
  "version": "5.0",
  "structure": {
    "store": {
      "description": "The central Redux store object created by createStore() or configureStore().",
      "methods": {
        "getState": {
          "description": "Returns the current state tree of your application.",
          "returns": "object"
        },
        "dispatch": {
          "description": "Dispatches an action. This is the only way to trigger a state change.",
          "parameters": {
            "action": "Action | ThunkAction"
          },
          "returns": "Action"
        },
        "subscribe": {
          "description": "Adds a change listener called any time an action is dispatched.",
          "parameters": {
            "listener": "() => void"
          },
          "returns": "() => void (unsubscribe function)"
        },
        "replaceReducer": {
          "description": "Replaces the reducer currently used by the store.",
          "parameters": {
            "nextReducer": "(state, action) => state"
          }
        }
      }
    },
    "reducer": {
      "description": "A pure function that takes the previous state and an action and returns the next state.",
      "signature": "(state: State | undefined, action: Action) => State",
      "rules": [
        "Must be a pure function (no side effects)",
        "Must not mutate the state argument",
        "Must return the initial state when called with undefined state",
        "Must return the current state for unknown action types"
      ]
    },
    "action": {
      "description": "A plain object describing a state change.",
      "requiredFields": ["type"],
      "optionalFields": ["payload", "error", "meta"]
    },
    "actionCreator": {
      "description": "A function that creates and returns an action object.",
      "types": {
        "plain": "() => Action",
        "thunk": "(dispatch, getState) => void | Promise",
        "rtk": "createAction() result"
      }
    },
    "selector": {
      "description": "A function that extracts and derives data from the Redux state.",
      "types": {
        "plain": "(state: State) => Value",
        "memoized": "createSelector() result from reselect"
      }
    },
    "middleware": {
      "description": "A higher-order function that extends Redux with custom functionality.",
      "signature": "(store) => (next) => (action) => result"
    },
    "slice": {
      "description": "A Redux Toolkit concept combining a reducer and its action creators.",
      "properties": {
        "name": "string (slice name / action prefix)",
        "initialState": "State",
        "reducers": "object of case reducer functions",
        "extraReducers": "function for handling external actions"
      }
    }
  }
}

Work with this as data

Every JSON Structure here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for json structure

4 MCP tools reach this
  • find_json_structuresBrowse and filter every JSON Structure in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This JSON Structure
curl "https://apis.io/api/v1/json-structures/redux-store-structure"
All json structure
curl "https://apis.io/api/v1/json-structures?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.