{
  "components": {
    "responses": {
      "errors": {
        "content": {
          "application/vnd.api+json": {
            "schema": {
              "$ref": "#/components/schemas/errors"
            }
          }
        },
        "description": "General Error"
      }
    },
    "schemas": {
      "board": {
        "additionalProperties": false,
        "description": "A \"Resource object\" representing a board",
        "properties": {
          "attributes": {
            "additionalProperties": false,
            "description": "An attributes object for a board",
            "properties": {
              "created_at": {
                "description": "Field included by default."
              },
              "owner_id": {
                "description": "Field included by default.",
                "format": "uuid",
                "type": "string"
              },
              "updated_at": {
                "description": "Field included by default."
              },
              "visibility": {
                "description": "Field included by default.",
                "enum": [
                  "private",
                  "public"
                ],
                "type": "string"
              }
            },
            "required": [
              "visibility",
              "created_at",
              "updated_at",
              "owner_id"
            ],
            "type": "object"
          },
          "id": {
            "type": "string"
          },
          "relationships": {
            "additionalProperties": false,
            "description": "A relationships object for a board",
            "properties": {
              "owner": {
                "properties": {
                  "data": {
                    "additionalProperties": false,
                    "description": "An identifier for owner",
                    "nullable": true,
                    "properties": {
                      "id": {
                        "type": "string"
                      },
                      "meta": {
                        "additionalProperties": true,
                        "type": "object"
                      },
                      "type": {
                        "type": "string"
                      }
                    },
                    "required": [
                      "type",
                      "id"
                    ],
                    "type": "object"
                  }
                }
              },
              "todos": {
                "properties": {
                  "data": {
                    "description": "Relationship data for todos",
                    "items": {
                      "additionalProperties": false,
                      "description": "Resource identifiers for todos",
                      "properties": {
                        "id": {
                          "type": "string"
                        },
                        "meta": {
                          "additionalProperties": true,
                          "type": "object"
                        },
                        "type": {
                          "type": "string"
                        }
                      },
                      "required": [
                        "type",
                        "id"
                      ],
                      "type": "object"
                    },
                    "type": "array",
                    "uniqueItems": true
                  }
                }
              }
            },
            "type": "object"
          },
          "type": {
            "type": "string"
          }
        },
        "required": [
          "type",
          "id"
        ],
        "type": "object"
      },
      "board-filter": {
        "additionalProperties": false,
        "description": "Filters the query to results matching the given filter object",
        "example": "",
        "properties": {
          "and": {
            "items": {
              "$ref": "#/components/schemas/board-filter"
            },
            "type": "array",
            "uniqueItems": true
          },
          "created_at": {
            "$ref": "#/components/schemas/board-filter-created_at"
          },
          "id": {
            "$ref": "#/components/schemas/board-filter-id"
          },
          "not": {
            "$ref": "#/components/schemas/board-filter"
          },
          "or": {
            "items": {
              "$ref": "#/components/schemas/board-filter"
            },
            "type": "array",
            "uniqueItems": true
          },
          "owner_id": {
            "$ref": "#/components/schemas/board-filter-owner_id"
          },
          "todos": {
            "$ref": "#/components/schemas/todo-filter"
          },
          "updated_at": {
            "$ref": "#/components/schemas/board-filter-updated_at"
          },
          "visibility": {
            "$ref": "#/components/schemas/board-filter-visibility"
          }
        },
        "type": "deepObject"
      },
      "board-filter-created_at": {
        "additionalProperties": false,
        "properties": {
          "eq": {},
          "greater_than": {},
          "greater_than_or_equal": {},
          "in": {
            "items": {},
            "type": "array"
          },
          "is_distinct_from": {
            "type": "string"
          },
          "is_nil": {
            "type": "boolean"
          },
          "is_not_distinct_from": {
            "type": "string"
          },
          "less_than": {},
          "less_than_or_equal": {},
          "not_eq": {}
        },
        "type": "object"
      },
      "board-filter-id": {
        "additionalProperties": false,
        "properties": {
          "eq": {
            "format": "uuid",
            "type": "string"
          },
          "greater_than": {
            "format": "uuid",
            "type": "string"
          },
          "greater_than_or_equal": {
            "format": "uuid",
            "type": "string"
          },
          "in": {
            "items": {
              "format": "uuid",
              "type": "string"
            },
            "type": "array"
          },
          "is_distinct_from": {
            "type": "string"
          },
          "is_nil": {
            "type": "boolean"
          },
          "is_not_distinct_from": {
            "type": "string"
          },
          "less_than": {
            "format": "uuid",
            "type": "string"
          },
          "less_than_or_equal": {
            "format": "uuid",
            "type": "string"
          },
          "not_eq": {
            "format": "uuid",
            "type": "string"
          }
        },
        "type": "object"
      },
      "board-filter-owner_id": {
        "additionalProperties": false,
        "properties": {
          "eq": {
            "format": "uuid",
            "type": "string"
          },
          "greater_than": {
            "format": "uuid",
            "type": "string"
          },
          "greater_than_or_equal": {
            "format": "uuid",
            "type": "string"
          },
          "in": {
            "items": {
              "format": "uuid",
              "type": "string"
            },
            "type": "array"
          },
          "is_distinct_from": {
            "type": "string"
          },
          "is_nil": {
            "type": "boolean"
          },
          "is_not_distinct_from": {
            "type": "string"
          },
          "less_than": {
            "format": "uuid",
            "type": "string"
          },
          "less_than_or_equal": {
            "format": "uuid",
            "type": "string"
          },
          "not_eq": {
            "format": "uuid",
            "type": "string"
          }
        },
        "type": "object"
      },
      "board-filter-updated_at": {
        "additionalProperties": false,
        "properties": {
          "eq": {},
          "greater_than": {},
          "greater_than_or_equal": {},
          "in": {
            "items": {},
            "type": "array"
          },
          "is_distinct_from": {
            "type": "string"
          },
          "is_nil": {
            "type": "boolean"
          },
          "is_not_distinct_from": {
            "type": "string"
          },
          "less_than": {},
          "less_than_or_equal": {},
          "not_eq": {}
        },
        "type": "object"
      },
      "board-filter-visibility": {
        "additionalProperties": false,
        "properties": {
          "eq": {
            "enum": [
              "private",
              "public"
            ],
            "type": "string"
          },
          "greater_than": {
            "enum": [
              "private",
              "public"
            ],
            "type": "string"
          },
          "greater_than_or_equal": {
            "enum": [
              "private",
              "public"
            ],
            "type": "string"
          },
          "in": {
            "items": {
              "enum": [
                "private",
                "public"
              ],
              "type": "string"
            },
            "type": "array"
          },
          "is_distinct_from": {
            "type": "string"
          },
          "is_nil": {
            "type": "boolean"
          },
          "is_not_distinct_from": {
            "type": "string"
          },
          "less_than": {
            "enum": [
              "private",
              "public"
            ],
            "type": "string"
          },
          "less_than_or_equal": {
            "enum": [
              "private",
              "public"
            ],
            "type": "string"
          },
          "not_eq": {
            "enum": [
              "private",
              "public"
            ],
            "type": "string"
          }
        },
        "type": "object"
      },
      "error": {
        "additionalProperties": false,
        "properties": {
          "code": {
            "description": "An application-specific error code, expressed as a string value.",
            "type": "string"
          },
          "detail": {
            "description": "A human-readable explanation specific to this occurrence of the problem.",
            "type": "string"
          },
          "id": {
            "description": "A unique identifier for this particular occurrence of the problem.",
            "type": "string"
          },
          "links": {
            "$ref": "#/components/schemas/links"
          },
          "source": {
            "properties": {
              "parameter": {
                "description": "A string indicating which query parameter caused the error.",
                "type": "string"
              },
              "pointer": {
                "description": "A JSON Pointer [RFC6901] to the associated entity in the request document [e.g. \"/data\" for a primary data object, or \"/data/attributes/title\" for a specific attribute].",
                "type": "string"
              }
            },
            "type": "object"
          },
          "status": {
            "description": "The HTTP status code applicable to this problem, expressed as a string value.",
            "type": "string"
          },
          "title": {
            "description": "A short, human-readable summary of the problem. It SHOULD NOT change from occurrence to occurrence of the problem, except for purposes of localization.",
            "type": "string"
          }
        },
        "type": "object"
      },
      "errors": {
        "items": {
          "$ref": "#/components/schemas/error"
        },
        "type": "array",
        "uniqueItems": true
      },
      "link": {
        "description": "A link MUST be represented as either: a string containing the link's URL or a link object.",
        "type": "string"
      },
      "links": {
        "additionalProperties": {
          "$ref": "#/components/schemas/link"
        },
        "type": "object"
      },
      "todo": {
        "additionalProperties": false,
        "description": "A \"Resource object\" representing a todo",
        "properties": {
          "attributes": {
            "additionalProperties": false,
            "description": "An attributes object for a todo",
            "properties": {
              "board_id": {
                "description": "Field included by default.",
                "format": "uuid",
                "type": "string"
              },
              "content": {
                "description": "Field included by default.",
                "type": "string"
              },
              "created_at": {
                "description": "Field included by default."
              },
              "priority": {
                "description": "Field included by default.",
                "enum": [
                  "low",
                  "medium",
                  "high",
                  "urgent"
                ],
                "type": "string"
              },
              "status": {
                "description": "Field included by default.",
                "enum": [
                  "blocked",
                  "backlog",
                  "in_progress",
                  "review",
                  "done",
                  "rejected"
                ],
                "type": "string"
              },
              "title": {
                "description": "Field included by default.",
                "type": "string"
              },
              "updated_at": {
                "description": "Field included by default."
              }
            },
            "required": [
              "title",
              "content",
              "status",
              "priority",
              "created_at",
              "updated_at",
              "board_id"
            ],
            "type": "object"
          },
          "id": {
            "type": "string"
          },
          "relationships": {
            "additionalProperties": false,
            "description": "A relationships object for a todo",
            "properties": {
              "board": {
                "properties": {
                  "data": {
                    "additionalProperties": false,
                    "description": "An identifier for board",
                    "nullable": true,
                    "properties": {
                      "id": {
                        "type": "string"
                      },
                      "meta": {
                        "additionalProperties": true,
                        "type": "object"
                      },
                      "type": {
                        "type": "string"
                      }
                    },
                    "required": [
                      "type",
                      "id"
                    ],
                    "type": "object"
                  }
                }
              }
            },
            "type": "object"
          },
          "type": {
            "type": "string"
          }
        },
        "required": [
          "type",
          "id"
        ],
        "type": "object"
      },
      "todo-filter": {
        "additionalProperties": false,
        "description": "Filters the query to results matching the given filter object",
        "example": "",
        "properties": {
          "and": {
            "items": {
              "$ref": "#/components/schemas/todo-filter"
            },
            "type": "array",
            "uniqueItems": true
          },
          "board": {
            "$ref": "#/components/schemas/board-filter"
          },
          "board_id": {
            "$ref": "#/components/schemas/todo-filter-board_id"
          },
          "content": {
            "$ref": "#/components/schemas/todo-filter-content"
          },
          "created_at": {
            "$ref": "#/components/schemas/todo-filter-created_at"
          },
          "id": {
            "$ref": "#/components/schemas/todo-filter-id"
          },
          "not": {
            "$ref": "#/components/schemas/todo-filter"
          },
          "or": {
            "items": {
              "$ref": "#/components/schemas/todo-filter"
            },
            "type": "array",
            "uniqueItems": true
          },
          "priority": {
            "$ref": "#/components/schemas/todo-filter-priority"
          },
          "status": {
            "$ref": "#/components/schemas/todo-filter-status"
          },
          "title": {
            "$ref": "#/components/schemas/todo-filter-title"
          },
          "updated_at": {
            "$ref": "#/components/schemas/todo-filter-updated_at"
          }
        },
        "type": "deepObject"
      },
      "todo-filter-board_id": {
        "additionalProperties": false,
        "properties": {
          "eq": {
            "format": "uuid",
            "type": "string"
          },
          "greater_than": {
            "format": "uuid",
            "type": "string"
          },
          "greater_than_or_equal": {
            "format": "uuid",
            "type": "string"
          },
          "in": {
            "items": {
              "format": "uuid",
              "type": "string"
            },
            "type": "array"
          },
          "is_distinct_from": {
            "type": "string"
          },
          "is_nil": {
            "type": "boolean"
          },
          "is_not_distinct_from": {
            "type": "string"
          },
          "less_than": {
            "format": "uuid",
            "type": "string"
          },
          "less_than_or_equal": {
            "format": "uuid",
            "type": "string"
          },
          "not_eq": {
            "format": "uuid",
            "type": "string"
          }
        },
        "type": "object"
      },
      "todo-filter-content": {
        "additionalProperties": false,
        "properties": {
          "contains": {
            "type": "string"
          },
          "eq": {
            "type": "string"
          },
          "greater_than": {
            "type": "string"
          },
          "greater_than_or_equal": {
            "type": "string"
          },
          "ilike": {
            "type": "string"
          },
          "in": {
            "items": {
              "type": "string"
            },
            "type": "array"
          },
          "is_distinct_from": {
            "type": "string"
          },
          "is_nil": {
            "type": "boolean"
          },
          "is_not_distinct_from": {
            "type": "string"
          },
          "less_than": {
            "type": "string"
          },
          "less_than_or_equal": {
            "type": "string"
          },
          "like": {
            "type": "string"
          },
          "not_eq": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "todo-filter-created_at": {
        "additionalProperties": false,
        "properties": {
          "eq": {},
          "greater_than": {},
          "greater_than_or_equal": {},
          "in": {
            "items": {},
            "type": "array"
          },
          "is_distinct_from": {
            "type": "string"
          },
          "is_nil": {
            "type": "boolean"
          },
          "is_not_distinct_from": {
            "type": "string"
          },
          "less_than": {},
          "less_than_or_equal": {},
          "not_eq": {}
        },
        "type": "object"
      },
      "todo-filter-id": {
        "additionalProperties": false,
        "properties": {
          "eq": {
            "format": "uuid",
            "type": "string"
          },
          "greater_than": {
            "format": "uuid",
            "type": "string"
          },
          "greater_than_or_equal": {
            "format": "uuid",
            "type": "string"
          },
          "in": {
            "items": {
              "format": "uuid",
              "type": "string"
            },
            "type": "array"
          },
          "is_distinct_from": {
            "type": "string"
          },
          "is_nil": {
            "type": "boolean"
          },
          "is_not_distinct_from": {
            "type": "string"
          },
          "less_than": {
            "format": "uuid",
            "type": "string"
          },
          "less_than_or_equal": {
            "format": "uuid",
            "type": "string"
          },
          "not_eq": {
            "format": "uuid",
            "type": "string"
          }
        },
        "type": "object"
      },
      "todo-filter-priority": {
        "additionalProperties": false,
        "properties": {
          "eq": {
            "enum": [
              "low",
              "medium",
              "high",
              "urgent"
            ],
            "type": "string"
          },
          "greater_than": {
            "enum": [
              "low",
              "medium",
              "high",
              "urgent"
            ],
            "type": "string"
          },
          "greater_than_or_equal": {
            "enum": [
              "low",
              "medium",
              "high",
              "urgent"
            ],
            "type": "string"
          },
          "in": {
            "items": {
              "enum": [
                "low",
                "medium",
                "high",
                "urgent"
              ],
              "type": "string"
            },
            "type": "array"
          },
          "is_distinct_from": {
            "type": "string"
          },
          "is_nil": {
            "type": "boolean"
          },
          "is_not_distinct_from": {
            "type": "string"
          },
          "less_than": {
            "enum": [
              "low",
              "medium",
              "high",
              "urgent"
            ],
            "type": "string"
          },
          "less_than_or_equal": {
            "enum": [
              "low",
              "medium",
              "high",
              "urgent"
            ],
            "type": "string"
          },
          "not_eq": {
            "enum": [
              "low",
              "medium",
              "high",
              "urgent"
            ],
            "type": "string"
          }
        },
        "type": "object"
      },
      "todo-filter-status": {
        "additionalProperties": false,
        "properties": {
          "eq": {
            "enum": [
              "blocked",
              "backlog",
              "in_progress",
              "review",
              "done",
              "rejected"
            ],
            "type": "string"
          },
          "greater_than": {
            "enum": [
              "blocked",
              "backlog",
              "in_progress",
              "review",
              "done",
              "rejected"
            ],
            "type": "string"
          },
          "greater_than_or_equal": {
            "enum": [
              "blocked",
              "backlog",
              "in_progress",
              "review",
              "done",
              "rejected"
            ],
            "type": "string"
          },
          "in": {
            "items": {
              "enum": [
                "blocked",
                "backlog",
                "in_progress",
                "review",
                "done",
                "rejected"
              ],
              "type": "string"
            },
            "type": "array"
          },
          "is_distinct_from": {
            "type": "string"
          },
          "is_nil": {
            "type": "boolean"
          },
          "is_not_distinct_from": {
            "type": "string"
          },
          "less_than": {
            "enum": [
              "blocked",
              "backlog",
              "in_progress",
              "review",
              "done",
              "rejected"
            ],
            "type": "string"
          },
          "less_than_or_equal": {
            "enum": [
              "blocked",
              "backlog",
              "in_progress",
              "review",
              "done",
              "rejected"
            ],
            "type": "string"
          },
          "not_eq": {
            "enum": [
              "blocked",
              "backlog",
              "in_progress",
              "review",
              "done",
              "rejected"
            ],
            "type": "string"
          }
        },
        "type": "object"
      },
      "todo-filter-title": {
        "additionalProperties": false,
        "properties": {
          "contains": {
            "type": "string"
          },
          "eq": {
            "type": "string"
          },
          "greater_than": {
            "type": "string"
          },
          "greater_than_or_equal": {
            "type": "string"
          },
          "ilike": {
            "type": "string"
          },
          "in": {
            "items": {
              "type": "string"
            },
            "type": "array"
          },
          "is_distinct_from": {
            "type": "string"
          },
          "is_nil": {
            "type": "boolean"
          },
          "is_not_distinct_from": {
            "type": "string"
          },
          "less_than": {
            "type": "string"
          },
          "less_than_or_equal": {
            "type": "string"
          },
          "like": {
            "type": "string"
          },
          "not_eq": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "todo-filter-updated_at": {
        "additionalProperties": false,
        "properties": {
          "eq": {},
          "greater_than": {},
          "greater_than_or_equal": {},
          "in": {
            "items": {},
            "type": "array"
          },
          "is_distinct_from": {
            "type": "string"
          },
          "is_nil": {
            "type": "boolean"
          },
          "is_not_distinct_from": {
            "type": "string"
          },
          "less_than": {},
          "less_than_or_equal": {},
          "not_eq": {}
        },
        "type": "object"
      },
      "user": {
        "additionalProperties": false,
        "description": "A \"Resource object\" representing a user",
        "properties": {
          "attributes": {
            "additionalProperties": false,
            "description": "An attributes object for a user",
            "properties": {
              "email": {
                "description": "Field included by default.",
                "type": "string"
              },
              "name": {
                "anyOf": [
                  {
                    "nullable": true,
                    "type": "string"
                  },
                  {
                    "type": "null"
                  }
                ],
                "description": "Field included by default."
              }
            },
            "required": [
              "email"
            ],
            "type": "object"
          },
          "id": {
            "type": "string"
          },
          "relationships": {
            "additionalProperties": false,
            "description": "A relationships object for a user",
            "properties": {
              "board": {
                "properties": {
                  "data": {
                    "additionalProperties": false,
                    "description": "An identifier for board",
                    "nullable": true,
                    "properties": {
                      "id": {
                        "type": "string"
                      },
                      "meta": {
                        "additionalProperties": true,
                        "type": "object"
                      },
                      "type": {
                        "type": "string"
                      }
                    },
                    "required": [
                      "type",
                      "id"
                    ],
                    "type": "object"
                  }
                }
              }
            },
            "type": "object"
          },
          "type": {
            "type": "string"
          }
        },
        "required": [
          "type",
          "id"
        ],
        "type": "object"
      }
    },
    "securitySchemes": {
      "bearerAuth": {
        "bearerFormat": "JWT",
        "description": "JWT for bearer authentication",
        "scheme": "bearer",
        "type": "http"
      }
    }
  },
  "info": {
    "title": "Open API Specification",
    "version": "1.1"
  },
  "openapi": "3.0.0",
  "paths": {
    "/api/boards": {
      "get": {
        "callbacks": {},
        "deprecated": false,
        "description": "/boards operation on board resource",
        "parameters": [
          {
            "description": "Filters the query to results with attributes matching the given filter object",
            "in": "query",
            "name": "filter",
            "required": false,
            "schema": {
              "$ref": "#/components/schemas/board-filter"
            },
            "style": "deepObject"
          },
          {
            "description": "Sort order to apply to the results",
            "explode": false,
            "in": "query",
            "name": "sort",
            "required": false,
            "schema": {
              "items": {
                "enum": [
                  "id",
                  "-id",
                  "visibility",
                  "-visibility",
                  "created_at",
                  "-created_at",
                  "updated_at",
                  "-updated_at",
                  "owner_id",
                  "-owner_id"
                ],
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Paginates the response with the limit and offset or keyset pagination.",
            "in": "query",
            "name": "page",
            "required": false,
            "schema": {
              "example": {
                "limit": 10
              },
              "properties": {
                "after": {
                  "type": "string"
                },
                "before": {
                  "type": "string"
                },
                "count": {
                  "default": false,
                  "type": "boolean"
                },
                "limit": {
                  "minimum": 1,
                  "type": "integer"
                },
                "offset": {
                  "minimum": 0,
                  "type": "integer"
                }
              },
              "type": "object"
            },
            "style": "deepObject"
          },
          {
            "description": "Relationship paths to include in the response",
            "explode": false,
            "in": "query",
            "name": "include",
            "required": false,
            "schema": {
              "items": {
                "enum": [
                  "owner"
                ],
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Limits the response fields to only those listed for each type",
            "in": "query",
            "name": "fields",
            "required": false,
            "schema": {
              "additionalProperties": false,
              "example": {
                "board": [
                  "id",
                  "visibility",
                  "created_at",
                  "updated_at",
                  "owner_id"
                ]
              },
              "properties": {
                "board": {
                  "description": "Field names for board",
                  "example": [
                    "id",
                    "visibility",
                    "created_at",
                    "updated_at",
                    "owner_id"
                  ],
                  "items": {
                    "enum": [
                      "id",
                      "visibility",
                      "created_at",
                      "updated_at",
                      "owner_id",
                      "owner",
                      "todos"
                    ],
                    "type": "string"
                  },
                  "type": "array"
                },
                "todo": {
                  "description": "Field names for todo",
                  "example": [
                    "id",
                    "title",
                    "content",
                    "status",
                    "priority",
                    "created_at",
                    "updated_at",
                    "board_id"
                  ],
                  "items": {
                    "enum": [
                      "id",
                      "title",
                      "content",
                      "status",
                      "priority",
                      "created_at",
                      "updated_at",
                      "board_id",
                      "board"
                    ],
                    "type": "string"
                  },
                  "type": "array"
                },
                "user": {
                  "description": "Field names for user",
                  "example": [
                    "id",
                    "email",
                    "name"
                  ],
                  "items": {
                    "enum": [
                      "id",
                      "email",
                      "name",
                      "board",
                      "identities"
                    ],
                    "type": "string"
                  },
                  "type": "array"
                }
              },
              "type": "object"
            },
            "style": "deepObject"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/vnd.api+json": {
                "schema": {
                  "additionalProperties": false,
                  "properties": {
                    "data": {
                      "description": "An array of resource objects representing a board",
                      "items": {
                        "$ref": "#/components/schemas/board"
                      },
                      "type": "array",
                      "uniqueItems": true
                    },
                    "included": {
                      "items": {
                        "oneOf": [
                          {
                            "$ref": "#/components/schemas/user"
                          }
                        ]
                      },
                      "type": "array",
                      "uniqueItems": true
                    },
                    "meta": {
                      "additionalProperties": true,
                      "type": "object"
                    }
                  },
                  "type": "object"
                }
              }
            },
            "description": "Success"
          },
          "default": {
            "$ref": "#/components/responses/errors"
          }
        },
        "tags": [
          "board"
        ]
      }
    },
    "/api/boards/{id}": {
      "get": {
        "callbacks": {},
        "deprecated": false,
        "description": "/boards/:id operation on board resource",
        "parameters": [
          {
            "in": "path",
            "name": "id",
            "required": true,
            "schema": {
              "type": "string"
            },
            "style": "form"
          },
          {
            "description": "Relationship paths to include in the response",
            "explode": false,
            "in": "query",
            "name": "include",
            "required": false,
            "schema": {
              "items": {
                "enum": [
                  "owner"
                ],
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Limits the response fields to only those listed for each type",
            "in": "query",
            "name": "fields",
            "required": false,
            "schema": {
              "additionalProperties": false,
              "example": {
                "board": [
                  "id",
                  "visibility",
                  "created_at",
                  "updated_at",
                  "owner_id"
                ]
              },
              "properties": {
                "board": {
                  "description": "Field names for board",
                  "example": [
                    "id",
                    "visibility",
                    "created_at",
                    "updated_at",
                    "owner_id"
                  ],
                  "items": {
                    "enum": [
                      "id",
                      "visibility",
                      "created_at",
                      "updated_at",
                      "owner_id",
                      "owner",
                      "todos"
                    ],
                    "type": "string"
                  },
                  "type": "array"
                },
                "todo": {
                  "description": "Field names for todo",
                  "example": [
                    "id",
                    "title",
                    "content",
                    "status",
                    "priority",
                    "created_at",
                    "updated_at",
                    "board_id"
                  ],
                  "items": {
                    "enum": [
                      "id",
                      "title",
                      "content",
                      "status",
                      "priority",
                      "created_at",
                      "updated_at",
                      "board_id",
                      "board"
                    ],
                    "type": "string"
                  },
                  "type": "array"
                },
                "user": {
                  "description": "Field names for user",
                  "example": [
                    "id",
                    "email",
                    "name"
                  ],
                  "items": {
                    "enum": [
                      "id",
                      "email",
                      "name",
                      "board",
                      "identities"
                    ],
                    "type": "string"
                  },
                  "type": "array"
                }
              },
              "type": "object"
            },
            "style": "deepObject"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/vnd.api+json": {
                "schema": {
                  "additionalProperties": false,
                  "properties": {
                    "data": {
                      "$ref": "#/components/schemas/board"
                    },
                    "included": {
                      "items": {
                        "oneOf": [
                          {
                            "$ref": "#/components/schemas/user"
                          }
                        ]
                      },
                      "type": "array",
                      "uniqueItems": true
                    },
                    "meta": {
                      "additionalProperties": true,
                      "type": "object"
                    }
                  }
                }
              }
            },
            "description": "Success"
          },
          "default": {
            "$ref": "#/components/responses/errors"
          }
        },
        "tags": [
          "board"
        ]
      },
      "patch": {
        "callbacks": {},
        "deprecated": false,
        "description": "/boards/:id operation on board resource",
        "parameters": [
          {
            "in": "path",
            "name": "id",
            "required": true,
            "schema": {
              "type": "string"
            },
            "style": "form"
          },
          {
            "description": "Relationship paths to include in the response",
            "explode": false,
            "in": "query",
            "name": "include",
            "required": false,
            "schema": {
              "items": {
                "enum": [
                  "owner"
                ],
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Limits the response fields to only those listed for each type",
            "in": "query",
            "name": "fields",
            "required": false,
            "schema": {
              "additionalProperties": false,
              "example": {
                "board": [
                  "id",
                  "visibility",
                  "created_at",
                  "updated_at",
                  "owner_id"
                ]
              },
              "properties": {
                "board": {
                  "description": "Field names for board",
                  "example": [
                    "id",
                    "visibility",
                    "created_at",
                    "updated_at",
                    "owner_id"
                  ],
                  "items": {
                    "enum": [
                      "id",
                      "visibility",
                      "created_at",
                      "updated_at",
                      "owner_id",
                      "owner",
                      "todos"
                    ],
                    "type": "string"
                  },
                  "type": "array"
                },
                "todo": {
                  "description": "Field names for todo",
                  "example": [
                    "id",
                    "title",
                    "content",
                    "status",
                    "priority",
                    "created_at",
                    "updated_at",
                    "board_id"
                  ],
                  "items": {
                    "enum": [
                      "id",
                      "title",
                      "content",
                      "status",
                      "priority",
                      "created_at",
                      "updated_at",
                      "board_id",
                      "board"
                    ],
                    "type": "string"
                  },
                  "type": "array"
                },
                "user": {
                  "description": "Field names for user",
                  "example": [
                    "id",
                    "email",
                    "name"
                  ],
                  "items": {
                    "enum": [
                      "id",
                      "email",
                      "name",
                      "board",
                      "identities"
                    ],
                    "type": "string"
                  },
                  "type": "array"
                }
              },
              "type": "object"
            },
            "style": "deepObject"
          }
        ],
        "requestBody": {
          "content": {
            "application/vnd.api+json": {
              "schema": {
                "additionalProperties": false,
                "properties": {
                  "data": {
                    "additionalProperties": false,
                    "properties": {
                      "attributes": {
                        "additionalProperties": false,
                        "properties": {
                          "visibility": {
                            "anyOf": [
                              {
                                "enum": [
                                  "private",
                                  "public"
                                ],
                                "type": "string"
                              },
                              {
                                "type": "null"
                              }
                            ]
                          }
                        },
                        "type": "object"
                      },
                      "id": {
                        "type": "string"
                      },
                      "relationships": {
                        "additionalProperties": false,
                        "properties": {},
                        "type": "object"
                      },
                      "type": {
                        "enum": [
                          "board"
                        ]
                      }
                    },
                    "required": [
                      "id"
                    ],
                    "type": "object"
                  }
                },
                "required": [
                  "data"
                ],
                "type": "object"
              }
            }
          },
          "description": "Request body for the /boards/:id operation on board resource",
          "required": false
        },
        "responses": {
          "200": {
            "content": {
              "application/vnd.api+json": {
                "schema": {
                  "additionalProperties": false,
                  "properties": {
                    "data": {
                      "$ref": "#/components/schemas/board"
                    },
                    "included": {
                      "items": {
                        "oneOf": [
                          {
                            "$ref": "#/components/schemas/user"
                          }
                        ]
                      },
                      "type": "array",
                      "uniqueItems": true
                    },
                    "meta": {
                      "additionalProperties": true,
                      "type": "object"
                    }
                  }
                }
              }
            },
            "description": "Success"
          },
          "default": {
            "$ref": "#/components/responses/errors"
          }
        },
        "tags": [
          "board"
        ]
      }
    },
    "/api/todos": {
      "get": {
        "callbacks": {},
        "deprecated": false,
        "description": "/todos operation on todo resource",
        "parameters": [
          {
            "description": "Filters the query to results with attributes matching the given filter object",
            "in": "query",
            "name": "filter",
            "required": false,
            "schema": {
              "$ref": "#/components/schemas/todo-filter"
            },
            "style": "deepObject"
          },
          {
            "description": "Sort order to apply to the results",
            "explode": false,
            "in": "query",
            "name": "sort",
            "required": false,
            "schema": {
              "items": {
                "enum": [
                  "id",
                  "-id",
                  "title",
                  "-title",
                  "content",
                  "-content",
                  "status",
                  "-status",
                  "priority",
                  "-priority",
                  "created_at",
                  "-created_at",
                  "updated_at",
                  "-updated_at",
                  "board_id",
                  "-board_id"
                ],
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Paginates the response with the limit and offset or keyset pagination.",
            "in": "query",
            "name": "page",
            "required": false,
            "schema": {
              "example": {
                "limit": 10
              },
              "properties": {
                "after": {
                  "type": "string"
                },
                "before": {
                  "type": "string"
                },
                "count": {
                  "default": false,
                  "type": "boolean"
                },
                "limit": {
                  "minimum": 1,
                  "type": "integer"
                },
                "offset": {
                  "minimum": 0,
                  "type": "integer"
                }
              },
              "type": "object"
            },
            "style": "deepObject"
          },
          {
            "description": "Relationship paths to include in the response",
            "explode": false,
            "in": "query",
            "name": "include",
            "required": false,
            "schema": {
              "items": {
                "enum": [
                  "board"
                ],
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Limits the response fields to only those listed for each type",
            "in": "query",
            "name": "fields",
            "required": false,
            "schema": {
              "additionalProperties": false,
              "example": {
                "todo": [
                  "id",
                  "title",
                  "content",
                  "status",
                  "priority",
                  "created_at",
                  "updated_at",
                  "board_id"
                ]
              },
              "properties": {
                "board": {
                  "description": "Field names for board",
                  "example": [
                    "id",
                    "visibility",
                    "created_at",
                    "updated_at",
                    "owner_id"
                  ],
                  "items": {
                    "enum": [
                      "id",
                      "visibility",
                      "created_at",
                      "updated_at",
                      "owner_id",
                      "owner",
                      "todos"
                    ],
                    "type": "string"
                  },
                  "type": "array"
                },
                "todo": {
                  "description": "Field names for todo",
                  "example": [
                    "id",
                    "title",
                    "content",
                    "status",
                    "priority",
                    "created_at",
                    "updated_at",
                    "board_id"
                  ],
                  "items": {
                    "enum": [
                      "id",
                      "title",
                      "content",
                      "status",
                      "priority",
                      "created_at",
                      "updated_at",
                      "board_id",
                      "board"
                    ],
                    "type": "string"
                  },
                  "type": "array"
                },
                "user": {
                  "description": "Field names for user",
                  "example": [
                    "id",
                    "email",
                    "name"
                  ],
                  "items": {
                    "enum": [
                      "id",
                      "email",
                      "name",
                      "board",
                      "identities"
                    ],
                    "type": "string"
                  },
                  "type": "array"
                }
              },
              "type": "object"
            },
            "style": "deepObject"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/vnd.api+json": {
                "schema": {
                  "additionalProperties": false,
                  "properties": {
                    "data": {
                      "description": "An array of resource objects representing a todo",
                      "items": {
                        "$ref": "#/components/schemas/todo"
                      },
                      "type": "array",
                      "uniqueItems": true
                    },
                    "included": {
                      "items": {
                        "oneOf": [
                          {
                            "$ref": "#/components/schemas/board"
                          }
                        ]
                      },
                      "type": "array",
                      "uniqueItems": true
                    },
                    "meta": {
                      "additionalProperties": true,
                      "properties": {
                        "statuses": {
                          "items": {
                            "enum": [
                              "blocked",
                              "backlog",
                              "in_progress",
                              "review",
                              "done",
                              "rejected"
                            ],
                            "type": "string"
                          },
                          "type": "array"
                        }
                      },
                      "type": "object"
                    }
                  },
                  "type": "object"
                }
              }
            },
            "description": "Success"
          },
          "default": {
            "$ref": "#/components/responses/errors"
          }
        },
        "tags": [
          "todo"
        ]
      },
      "post": {
        "callbacks": {},
        "deprecated": false,
        "description": "/todos operation on todo resource",
        "parameters": [
          {
            "description": "Relationship paths to include in the response",
            "explode": false,
            "in": "query",
            "name": "include",
            "required": false,
            "schema": {
              "items": {
                "enum": [
                  "board"
                ],
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Limits the response fields to only those listed for each type",
            "in": "query",
            "name": "fields",
            "required": false,
            "schema": {
              "additionalProperties": false,
              "example": {
                "todo": [
                  "id",
                  "title",
                  "content",
                  "status",
                  "priority",
                  "created_at",
                  "updated_at",
                  "board_id"
                ]
              },
              "properties": {
                "board": {
                  "description": "Field names for board",
                  "example": [
                    "id",
                    "visibility",
                    "created_at",
                    "updated_at",
                    "owner_id"
                  ],
                  "items": {
                    "enum": [
                      "id",
                      "visibility",
                      "created_at",
                      "updated_at",
                      "owner_id",
                      "owner",
                      "todos"
                    ],
                    "type": "string"
                  },
                  "type": "array"
                },
                "todo": {
                  "description": "Field names for todo",
                  "example": [
                    "id",
                    "title",
                    "content",
                    "status",
                    "priority",
                    "created_at",
                    "updated_at",
                    "board_id"
                  ],
                  "items": {
                    "enum": [
                      "id",
                      "title",
                      "content",
                      "status",
                      "priority",
                      "created_at",
                      "updated_at",
                      "board_id",
                      "board"
                    ],
                    "type": "string"
                  },
                  "type": "array"
                },
                "user": {
                  "description": "Field names for user",
                  "example": [
                    "id",
                    "email",
                    "name"
                  ],
                  "items": {
                    "enum": [
                      "id",
                      "email",
                      "name",
                      "board",
                      "identities"
                    ],
                    "type": "string"
                  },
                  "type": "array"
                }
              },
              "type": "object"
            },
            "style": "deepObject"
          }
        ],
        "requestBody": {
          "content": {
            "application/vnd.api+json": {
              "schema": {
                "additionalProperties": false,
                "properties": {
                  "data": {
                    "additionalProperties": false,
                    "properties": {
                      "attributes": {
                        "additionalProperties": false,
                        "properties": {
                          "board_id": {
                            "format": "uuid",
                            "type": "string"
                          },
                          "content": {
                            "type": "string"
                          },
                          "priority": {
                            "anyOf": [
                              {
                                "enum": [
                                  "low",
                                  "medium",
                                  "high",
                                  "urgent"
                                ],
                                "type": "string"
                              },
                              {
                                "type": "null"
                              }
                            ]
                          },
                          "status": {
                            "anyOf": [
                              {
                                "enum": [
                                  "blocked",
                                  "backlog",
                                  "in_progress",
                                  "review",
                                  "done",
                                  "rejected"
                                ],
                                "type": "string"
                              },
                              {
                                "type": "null"
                              }
                            ]
                          },
                          "title": {
                            "type": "string"
                          }
                        },
                        "required": [
                          "title",
                          "content",
                          "board_id"
                        ],
                        "type": "object"
                      },
                      "relationships": {
                        "additionalProperties": false,
                        "properties": {},
                        "type": "object"
                      },
                      "type": {
                        "enum": [
                          "todo"
                        ]
                      }
                    },
                    "type": "object"
                  }
                },
                "required": [
                  "data"
                ],
                "type": "object"
              }
            }
          },
          "description": "Request body for the /todos operation on todo resource",
          "required": true
        },
        "responses": {
          "201": {
            "content": {
              "application/vnd.api+json": {
                "schema": {
                  "additionalProperties": false,
                  "properties": {
                    "data": {
                      "$ref": "#/components/schemas/todo"
                    },
                    "included": {
                      "items": {
                        "oneOf": [
                          {
                            "$ref": "#/components/schemas/board"
                          }
                        ]
                      },
                      "type": "array",
                      "uniqueItems": true
                    },
                    "meta": {
                      "additionalProperties": true,
                      "type": "object"
                    }
                  }
                }
              }
            },
            "description": "Success"
          },
          "default": {
            "$ref": "#/components/responses/errors"
          }
        },
        "tags": [
          "todo"
        ]
      }
    },
    "/api/todos/{id}": {
      "delete": {
        "callbacks": {},
        "deprecated": false,
        "description": "/todos/:id operation on todo resource",
        "parameters": [
          {
            "in": "path",
            "name": "id",
            "required": true,
            "schema": {
              "type": "string"
            },
            "style": "form"
          },
          {
            "description": "Relationship paths to include in the response",
            "explode": false,
            "in": "query",
            "name": "include",
            "required": false,
            "schema": {
              "items": {
                "enum": [
                  "board"
                ],
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Limits the response fields to only those listed for each type",
            "in": "query",
            "name": "fields",
            "required": false,
            "schema": {
              "additionalProperties": false,
              "example": {
                "todo": [
                  "id",
                  "title",
                  "content",
                  "status",
                  "priority",
                  "created_at",
                  "updated_at",
                  "board_id"
                ]
              },
              "properties": {
                "board": {
                  "description": "Field names for board",
                  "example": [
                    "id",
                    "visibility",
                    "created_at",
                    "updated_at",
                    "owner_id"
                  ],
                  "items": {
                    "enum": [
                      "id",
                      "visibility",
                      "created_at",
                      "updated_at",
                      "owner_id",
                      "owner",
                      "todos"
                    ],
                    "type": "string"
                  },
                  "type": "array"
                },
                "todo": {
                  "description": "Field names for todo",
                  "example": [
                    "id",
                    "title",
                    "content",
                    "status",
                    "priority",
                    "created_at",
                    "updated_at",
                    "board_id"
                  ],
                  "items": {
                    "enum": [
                      "id",
                      "title",
                      "content",
                      "status",
                      "priority",
                      "created_at",
                      "updated_at",
                      "board_id",
                      "board"
                    ],
                    "type": "string"
                  },
                  "type": "array"
                },
                "user": {
                  "description": "Field names for user",
                  "example": [
                    "id",
                    "email",
                    "name"
                  ],
                  "items": {
                    "enum": [
                      "id",
                      "email",
                      "name",
                      "board",
                      "identities"
                    ],
                    "type": "string"
                  },
                  "type": "array"
                }
              },
              "type": "object"
            },
            "style": "deepObject"
          }
        ],
        "responses": {
          "200": {
            "description": "Deleted successfully"
          },
          "default": {
            "$ref": "#/components/responses/errors"
          }
        },
        "tags": [
          "todo"
        ]
      },
      "get": {
        "callbacks": {},
        "deprecated": false,
        "description": "/todos/:id operation on todo resource",
        "parameters": [
          {
            "in": "path",
            "name": "id",
            "required": true,
            "schema": {
              "type": "string"
            },
            "style": "form"
          },
          {
            "description": "Relationship paths to include in the response",
            "explode": false,
            "in": "query",
            "name": "include",
            "required": false,
            "schema": {
              "items": {
                "enum": [
                  "board"
                ],
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Limits the response fields to only those listed for each type",
            "in": "query",
            "name": "fields",
            "required": false,
            "schema": {
              "additionalProperties": false,
              "example": {
                "todo": [
                  "id",
                  "title",
                  "content",
                  "status",
                  "priority",
                  "created_at",
                  "updated_at",
                  "board_id"
                ]
              },
              "properties": {
                "board": {
                  "description": "Field names for board",
                  "example": [
                    "id",
                    "visibility",
                    "created_at",
                    "updated_at",
                    "owner_id"
                  ],
                  "items": {
                    "enum": [
                      "id",
                      "visibility",
                      "created_at",
                      "updated_at",
                      "owner_id",
                      "owner",
                      "todos"
                    ],
                    "type": "string"
                  },
                  "type": "array"
                },
                "todo": {
                  "description": "Field names for todo",
                  "example": [
                    "id",
                    "title",
                    "content",
                    "status",
                    "priority",
                    "created_at",
                    "updated_at",
                    "board_id"
                  ],
                  "items": {
                    "enum": [
                      "id",
                      "title",
                      "content",
                      "status",
                      "priority",
                      "created_at",
                      "updated_at",
                      "board_id",
                      "board"
                    ],
                    "type": "string"
                  },
                  "type": "array"
                },
                "user": {
                  "description": "Field names for user",
                  "example": [
                    "id",
                    "email",
                    "name"
                  ],
                  "items": {
                    "enum": [
                      "id",
                      "email",
                      "name",
                      "board",
                      "identities"
                    ],
                    "type": "string"
                  },
                  "type": "array"
                }
              },
              "type": "object"
            },
            "style": "deepObject"
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/vnd.api+json": {
                "schema": {
                  "additionalProperties": false,
                  "properties": {
                    "data": {
                      "$ref": "#/components/schemas/todo"
                    },
                    "included": {
                      "items": {
                        "oneOf": [
                          {
                            "$ref": "#/components/schemas/board"
                          }
                        ]
                      },
                      "type": "array",
                      "uniqueItems": true
                    },
                    "meta": {
                      "additionalProperties": true,
                      "type": "object"
                    }
                  }
                }
              }
            },
            "description": "Success"
          },
          "default": {
            "$ref": "#/components/responses/errors"
          }
        },
        "tags": [
          "todo"
        ]
      },
      "patch": {
        "callbacks": {},
        "deprecated": false,
        "description": "/todos/:id operation on todo resource",
        "parameters": [
          {
            "in": "path",
            "name": "id",
            "required": true,
            "schema": {
              "type": "string"
            },
            "style": "form"
          },
          {
            "description": "Relationship paths to include in the response",
            "explode": false,
            "in": "query",
            "name": "include",
            "required": false,
            "schema": {
              "items": {
                "enum": [
                  "board"
                ],
                "type": "string"
              },
              "type": "array"
            },
            "style": "form"
          },
          {
            "description": "Limits the response fields to only those listed for each type",
            "in": "query",
            "name": "fields",
            "required": false,
            "schema": {
              "additionalProperties": false,
              "example": {
                "todo": [
                  "id",
                  "title",
                  "content",
                  "status",
                  "priority",
                  "created_at",
                  "updated_at",
                  "board_id"
                ]
              },
              "properties": {
                "board": {
                  "description": "Field names for board",
                  "example": [
                    "id",
                    "visibility",
                    "created_at",
                    "updated_at",
                    "owner_id"
                  ],
                  "items": {
                    "enum": [
                      "id",
                      "visibility",
                      "created_at",
                      "updated_at",
                      "owner_id",
                      "owner",
                      "todos"
                    ],
                    "type": "string"
                  },
                  "type": "array"
                },
                "todo": {
                  "description": "Field names for todo",
                  "example": [
                    "id",
                    "title",
                    "content",
                    "status",
                    "priority",
                    "created_at",
                    "updated_at",
                    "board_id"
                  ],
                  "items": {
                    "enum": [
                      "id",
                      "title",
                      "content",
                      "status",
                      "priority",
                      "created_at",
                      "updated_at",
                      "board_id",
                      "board"
                    ],
                    "type": "string"
                  },
                  "type": "array"
                },
                "user": {
                  "description": "Field names for user",
                  "example": [
                    "id",
                    "email",
                    "name"
                  ],
                  "items": {
                    "enum": [
                      "id",
                      "email",
                      "name",
                      "board",
                      "identities"
                    ],
                    "type": "string"
                  },
                  "type": "array"
                }
              },
              "type": "object"
            },
            "style": "deepObject"
          }
        ],
        "requestBody": {
          "content": {
            "application/vnd.api+json": {
              "schema": {
                "additionalProperties": false,
                "properties": {
                  "data": {
                    "additionalProperties": false,
                    "properties": {
                      "attributes": {
                        "additionalProperties": false,
                        "properties": {
                          "content": {
                            "anyOf": [
                              {
                                "type": "string"
                              },
                              {
                                "type": "null"
                              }
                            ]
                          },
                          "priority": {
                            "anyOf": [
                              {
                                "enum": [
                                  "low",
                                  "medium",
                                  "high",
                                  "urgent"
                                ],
                                "type": "string"
                              },
                              {
                                "type": "null"
                              }
                            ]
                          },
                          "status": {
                            "anyOf": [
                              {
                                "enum": [
                                  "blocked",
                                  "backlog",
                                  "in_progress",
                                  "review",
                                  "done",
                                  "rejected"
                                ],
                                "type": "string"
                              },
                              {
                                "type": "null"
                              }
                            ]
                          },
                          "title": {
                            "anyOf": [
                              {
                                "type": "string"
                              },
                              {
                                "type": "null"
                              }
                            ]
                          }
                        },
                        "type": "object"
                      },
                      "id": {
                        "type": "string"
                      },
                      "relationships": {
                        "additionalProperties": false,
                        "properties": {},
                        "type": "object"
                      },
                      "type": {
                        "enum": [
                          "todo"
                        ]
                      }
                    },
                    "required": [
                      "id"
                    ],
                    "type": "object"
                  }
                },
                "required": [
                  "data"
                ],
                "type": "object"
              }
            }
          },
          "description": "Request body for the /todos/:id operation on todo resource",
          "required": false
        },
        "responses": {
          "200": {
            "content": {
              "application/vnd.api+json": {
                "schema": {
                  "additionalProperties": false,
                  "properties": {
                    "data": {
                      "$ref": "#/components/schemas/todo"
                    },
                    "included": {
                      "items": {
                        "oneOf": [
                          {
                            "$ref": "#/components/schemas/board"
                          }
                        ]
                      },
                      "type": "array",
                      "uniqueItems": true
                    },
                    "meta": {
                      "additionalProperties": true,
                      "type": "object"
                    }
                  }
                }
              }
            },
            "description": "Success"
          },
          "default": {
            "$ref": "#/components/responses/errors"
          }
        },
        "tags": [
          "todo"
        ]
      }
    }
  },
  "security": [
    {
      "bearerAuth": []
    }
  ],
  "servers": [
    {
      "url": "https://api.moda.ravecat.io",
      "variables": {}
    }
  ],
  "tags": []
}