{
  "openapi": "3.0.1",
  "info": {
    "title": "Bloom Growth v1 API",
    "version": "v1"
  },
  "paths": {
    "/api/v1/headline/notes/{HEADLINE_ID}": {
      "get": {
        "tags": [
          "Headlines"
        ],
        "parameters": [
          {
            "name": "HEADLINE_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          },
          {
            "name": "showControls",
            "in": "query",
            "schema": {
              "type": "boolean",
              "default": true
            }
          },
          {
            "name": "readOnly",
            "in": "query",
            "schema": {
              "type": "boolean",
              "default": false
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/NotesPadResponse"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/NotesPadResponse"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/NotesPadResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/headline/{HEADLINE_ID}": {
      "get": {
        "tags": [
          "Headlines"
        ],
        "parameters": [
          {
            "name": "HEADLINE_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          },
          {
            "name": "Include_Origin",
            "in": "query",
            "schema": {
              "type": "boolean",
              "default": false
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/Headline"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Headline"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/Headline"
                }
              }
            }
          }
        }
      },
      "put": {
        "tags": [
          "Headlines"
        ],
        "parameters": [
          {
            "name": "HEADLINE_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/Title"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Title"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/Title"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/Title"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "tags": [
          "Headlines"
        ],
        "parameters": [
          {
            "name": "HEADLINE_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/api/v1/headline/users/{USER_ID}": {
      "get": {
        "tags": [
          "Headlines"
        ],
        "parameters": [
          {
            "name": "USER_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          },
          {
            "name": "Include_Origin",
            "in": "query",
            "schema": {
              "type": "boolean",
              "default": false
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Headline"
                  }
                }
              },
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Headline"
                  }
                }
              },
              "text/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Headline"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/headline/users/mine": {
      "get": {
        "tags": [
          "Headlines"
        ],
        "parameters": [
          {
            "name": "Include_Origin",
            "in": "query",
            "schema": {
              "type": "boolean",
              "default": false
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Headline"
                  }
                }
              },
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Headline"
                  }
                }
              },
              "text/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Headline"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/issues/create": {
      "post": {
        "tags": [
          "Issues"
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/CreateIssue"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CreateIssue"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/CreateIssue"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/CreateIssue"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/Issue"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Issue"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/Issue"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/issues/{ISSUE_ID}/movetovto": {
      "post": {
        "tags": [
          "Issues"
        ],
        "parameters": [
          {
            "name": "ISSUE_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/api/v1/issues/{ISSUE_ID}/movefromvto": {
      "post": {
        "tags": [
          "Issues"
        ],
        "parameters": [
          {
            "name": "ISSUE_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/api/v1/issues/{ISSUE_ID}/movetomeeting/{MEETING_ID}": {
      "post": {
        "tags": [
          "Issues"
        ],
        "parameters": [
          {
            "name": "ISSUE_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          },
          {
            "name": "MEETING_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/api/v1/issues/{ISSUE_ID}/complete": {
      "post": {
        "tags": [
          "Issues"
        ],
        "parameters": [
          {
            "name": "ISSUE_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateIssueModelCompletion"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateIssueModelCompletion"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateIssueModelCompletion"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateIssueModelCompletion"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/api/v1/issues/{ISSUE_ID}": {
      "put": {
        "tags": [
          "Issues"
        ],
        "parameters": [
          {
            "name": "ISSUE_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateIssue"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateIssue"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateIssue"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateIssue"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "get": {
        "tags": [
          "Issues"
        ],
        "parameters": [
          {
            "name": "ISSUE_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/Issue"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Issue"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/Issue"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/issues/users/mine": {
      "get": {
        "tags": [
          "Issues"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Issue"
                  }
                }
              },
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Issue"
                  }
                }
              },
              "text/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Issue"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/issues/users/{USER_ID}": {
      "get": {
        "tags": [
          "Issues"
        ],
        "parameters": [
          {
            "name": "USER_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Issue"
                  }
                }
              },
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Issue"
                  }
                }
              },
              "text/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Issue"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/issues/notes/{ISSUE_ID}": {
      "get": {
        "tags": [
          "Issues"
        ],
        "parameters": [
          {
            "name": "ISSUE_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          },
          {
            "name": "showControls",
            "in": "query",
            "schema": {
              "type": "boolean",
              "default": true
            }
          },
          {
            "name": "readOnly",
            "in": "query",
            "schema": {
              "type": "boolean",
              "default": false
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/NotesPadResponse"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/NotesPadResponse"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/NotesPadResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/L10/create": {
      "post": {
        "tags": [
          "L10"
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/CreateMeeting"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CreateMeeting"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/CreateMeeting"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/CreateMeeting"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/CreatedMeeting"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CreatedMeeting"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/CreatedMeeting"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/L10/{MEETING_ID}": {
      "put": {
        "tags": [
          "L10"
        ],
        "parameters": [
          {
            "name": "MEETING_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/Title"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Title"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/Title"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/Title"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "tags": [
          "L10"
        ],
        "parameters": [
          {
            "name": "MEETING_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "get": {
        "tags": [
          "L10"
        ],
        "parameters": [
          {
            "name": "MEETING_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/Meeting"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Meeting"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/Meeting"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/L10/{MEETING_ID}/measurables/{MEASURABLE_ID}": {
      "post": {
        "tags": [
          "L10"
        ],
        "parameters": [
          {
            "name": "MEETING_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          },
          {
            "name": "MEASURABLE_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "tags": [
          "L10"
        ],
        "parameters": [
          {
            "name": "MEETING_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          },
          {
            "name": "MEASURABLE_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/api/v1/L10/{MEETING_ID}/rocks/{ROCK_ID}": {
      "post": {
        "tags": [
          "L10"
        ],
        "parameters": [
          {
            "name": "MEETING_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          },
          {
            "name": "ROCK_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "tags": [
          "L10"
        ],
        "parameters": [
          {
            "name": "MEETING_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          },
          {
            "name": "ROCK_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/api/v1/L10/{MEETING_ID}/rocks/{ROCK_ID}/businessplan": {
      "post": {
        "tags": [
          "L10"
        ],
        "parameters": [
          {
            "name": "MEETING_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          },
          {
            "name": "ROCK_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "tags": [
          "L10"
        ],
        "parameters": [
          {
            "name": "MEETING_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          },
          {
            "name": "ROCK_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/api/v1/L10/{MEETING_ID}/todos": {
      "post": {
        "tags": [
          "L10"
        ],
        "parameters": [
          {
            "name": "MEETING_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/CreateTodo"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CreateTodo"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/CreateTodo"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/CreateTodo"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/Todo"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Todo"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/Todo"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/L10/{MEETING_ID}/issues": {
      "post": {
        "tags": [
          "L10"
        ],
        "parameters": [
          {
            "name": "MEETING_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/CreateIssue_"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CreateIssue_"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/CreateIssue_"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/CreateIssue_"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/Issue"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Issue"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/Issue"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/L10/{MEETING_ID}/issues/{ISSUE_ID}": {
      "delete": {
        "tags": [
          "L10"
        ],
        "parameters": [
          {
            "name": "MEETING_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          },
          {
            "name": "ISSUE_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/api/v1/L10/{MEETING_ID}/headlines": {
      "post": {
        "tags": [
          "L10"
        ],
        "parameters": [
          {
            "name": "MEETING_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/CreateHeadline"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CreateHeadline"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/CreateHeadline"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/CreateHeadline"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/Headline"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Headline"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/Headline"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/L10/{MEETING_ID}/rocks": {
      "post": {
        "tags": [
          "L10"
        ],
        "parameters": [
          {
            "name": "MEETING_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/CreateRock"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CreateRock"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/CreateRock"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/CreateRock"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/Rock"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Rock"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/Rock"
                }
              }
            }
          }
        }
      },
      "get": {
        "tags": [
          "L10"
        ],
        "parameters": [
          {
            "name": "MEETING_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          },
          {
            "name": "INCLUDE_ARCHIVE",
            "in": "query",
            "schema": {
              "type": "boolean",
              "default": false
            }
          },
          {
            "name": "INCLUDE_ORIGIN",
            "in": "query",
            "schema": {
              "type": "boolean",
              "default": false
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Rock"
                  }
                }
              },
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Rock"
                  }
                }
              },
              "text/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Rock"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/L10/{MEETING_ID}/headlines/{HEADLINE_ID}": {
      "delete": {
        "tags": [
          "L10"
        ],
        "parameters": [
          {
            "name": "MEETING_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          },
          {
            "name": "HEADLINE_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/api/v1/L10/{MEETING_ID}/attendees": {
      "get": {
        "tags": [
          "L10"
        ],
        "parameters": [
          {
            "name": "MEETING_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/User"
                  }
                }
              },
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/User"
                  }
                }
              },
              "text/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/User"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/L10/{MEETING_ID}/attendees/{USER_ID}": {
      "post": {
        "tags": [
          "L10"
        ],
        "parameters": [
          {
            "name": "MEETING_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          },
          {
            "name": "USER_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/api/v1/L10/list": {
      "get": {
        "tags": [
          "L10"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/NameId"
                  }
                }
              },
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/NameId"
                  }
                }
              },
              "text/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/NameId"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/L10/{USER_ID}/list": {
      "get": {
        "tags": [
          "L10"
        ],
        "parameters": [
          {
            "name": "USER_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/NameId"
                  }
                }
              },
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/NameId"
                  }
                }
              },
              "text/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/NameId"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/l10/{MEETING_ID}/issues": {
      "get": {
        "tags": [
          "L10"
        ],
        "parameters": [
          {
            "name": "MEETING_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          },
          {
            "name": "INCLUDE_RESOLVED",
            "in": "query",
            "schema": {
              "type": "boolean",
              "default": false
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Issue"
                  }
                }
              },
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Issue"
                  }
                }
              },
              "text/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Issue"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/l10/{MEETING_ID}/users/{USER_ID}/issues": {
      "get": {
        "tags": [
          "L10"
        ],
        "parameters": [
          {
            "name": "USER_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          },
          {
            "name": "MEETING_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Issue"
                  }
                }
              },
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Issue"
                  }
                }
              },
              "text/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Issue"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/l10/{MEETING_ID}/todos": {
      "get": {
        "tags": [
          "L10"
        ],
        "parameters": [
          {
            "name": "MEETING_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          },
          {
            "name": "INCLUDE_CLOSED",
            "in": "query",
            "schema": {
              "type": "boolean",
              "default": false
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Todo"
                  }
                }
              },
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Todo"
                  }
                }
              },
              "text/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Todo"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/l10/{MEETING_ID}/users/{USER_ID}/todos": {
      "get": {
        "tags": [
          "L10"
        ],
        "parameters": [
          {
            "name": "USER_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          },
          {
            "name": "MEETING_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Todo"
                  }
                }
              },
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Todo"
                  }
                }
              },
              "text/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Todo"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/l10/{MEETING_ID}/headlines": {
      "get": {
        "tags": [
          "L10"
        ],
        "parameters": [
          {
            "name": "MEETING_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          },
          {
            "name": "Include_Origin",
            "in": "query",
            "schema": {
              "type": "boolean",
              "default": false
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Headline"
                  }
                }
              },
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Headline"
                  }
                }
              },
              "text/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Headline"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/l10/{MEETING_ID}/users/{USER_ID}/headlines": {
      "get": {
        "tags": [
          "L10"
        ],
        "parameters": [
          {
            "name": "USER_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          },
          {
            "name": "MEETING_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          },
          {
            "name": "Include_Origin",
            "in": "query",
            "schema": {
              "type": "boolean",
              "default": false
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Headline"
                  }
                }
              },
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Headline"
                  }
                }
              },
              "text/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Headline"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/l10/{MEETING_ID}/users/{USER_ID}/rocks": {
      "get": {
        "tags": [
          "L10"
        ],
        "parameters": [
          {
            "name": "USER_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          },
          {
            "name": "MEETING_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          },
          {
            "name": "INCLUDE_ORIGIN",
            "in": "query",
            "schema": {
              "type": "boolean",
              "default": false
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Rock"
                  }
                }
              },
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Rock"
                  }
                }
              },
              "text/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Rock"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/l10/{MEETING_ID}/measurables": {
      "get": {
        "tags": [
          "L10"
        ],
        "parameters": [
          {
            "name": "MEETING_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Measurable"
                  }
                }
              },
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Measurable"
                  }
                }
              },
              "text/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Measurable"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/l10/{MEETING_ID}/users/{USER_ID}/measurables": {
      "get": {
        "tags": [
          "L10"
        ],
        "parameters": [
          {
            "name": "USER_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          },
          {
            "name": "MEETING_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Measurable"
                  }
                }
              },
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Measurable"
                  }
                }
              },
              "text/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Measurable"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/measurables/create": {
      "post": {
        "tags": [
          "Measurables_"
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/CreateMeasurable"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CreateMeasurable"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/CreateMeasurable"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/CreateMeasurable"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/Measurable"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Measurable"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/Measurable"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/measurables/{MEASURABLE_ID}/week/{WEEK_ID}": {
      "put": {
        "tags": [
          "Measurables_"
        ],
        "parameters": [
          {
            "name": "MEASURABLE_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          },
          {
            "name": "WEEK_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateScore"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateScore"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateScore"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateScore"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/api/v1/measurables/{MEASURABLE_ID}": {
      "put": {
        "tags": [
          "Measurables_"
        ],
        "parameters": [
          {
            "name": "MEASURABLE_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateMeasurable"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateMeasurable"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateMeasurable"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateMeasurable"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "get": {
        "tags": [
          "Measurables_"
        ],
        "parameters": [
          {
            "name": "MEASURABLE_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          },
          {
            "name": "Include_Origin",
            "in": "query",
            "schema": {
              "type": "boolean",
              "default": false
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/Measurable"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Measurable"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/Measurable"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/measurables/user/mine": {
      "get": {
        "tags": [
          "Measurables_"
        ],
        "parameters": [
          {
            "name": "Include_Origin",
            "in": "query",
            "schema": {
              "type": "boolean",
              "default": false
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Measurable"
                  }
                }
              },
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Measurable"
                  }
                }
              },
              "text/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Measurable"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/measurables/user/{USER_ID}": {
      "get": {
        "tags": [
          "Measurables_"
        ],
        "parameters": [
          {
            "name": "USER_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          },
          {
            "name": "Include_Origin",
            "in": "query",
            "schema": {
              "type": "boolean",
              "default": false
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Measurable"
                  }
                }
              },
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Measurable"
                  }
                }
              },
              "text/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Measurable"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/measurables/{MEASURABLE_ID}/scores": {
      "get": {
        "tags": [
          "Measurables_"
        ],
        "parameters": [
          {
            "name": "MEASURABLE_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          },
          {
            "name": "Include_Origin",
            "in": "query",
            "schema": {
              "type": "boolean",
              "default": false
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Score"
                  }
                }
              },
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Score"
                  }
                }
              },
              "text/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Score"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/milestones/{MILESTONE_ID}": {
      "get": {
        "tags": [
          "Milestones"
        ],
        "parameters": [
          {
            "name": "MILESTONE_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/Milestone"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Milestone"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/Milestone"
                }
              }
            }
          }
        }
      },
      "put": {
        "tags": [
          "Milestones"
        ],
        "parameters": [
          {
            "name": "MILESTONE_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateMilestone"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateMilestone"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateMilestone"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateMilestone"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "tags": [
          "Milestones"
        ],
        "parameters": [
          {
            "name": "MILESTONE_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/api/v1/positions/mine": {
      "get": {
        "tags": [
          "Position"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Position"
                  }
                }
              },
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Position"
                  }
                }
              },
              "text/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Position"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/process/{PROCESS_ID}/execute": {
      "post": {
        "tags": [
          "Process"
        ],
        "parameters": [
          {
            "name": "PROCESS_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/ProcessExecution"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ProcessExecution"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/ProcessExecution"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/process/steps/{STEP_ID}": {
      "post": {
        "tags": [
          "Process"
        ],
        "parameters": [
          {
            "name": "STEP_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/CompleteStep"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CompleteStep"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/CompleteStep"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/CompleteStep"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/api/v1/process/list": {
      "get": {
        "tags": [
          "Process"
        ],
        "parameters": [
          {
            "name": "FOLDER_ID",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Process"
                  }
                }
              },
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Process"
                  }
                }
              },
              "text/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Process"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/process/folder/list": {
      "get": {
        "tags": [
          "Process"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/ProcessFolder"
                  }
                }
              },
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/ProcessFolder"
                  }
                }
              },
              "text/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/ProcessFolder"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/process/{PROCESS_ID}": {
      "get": {
        "tags": [
          "Process"
        ],
        "parameters": [
          {
            "name": "PROCESS_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/Process"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Process"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/Process"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/process/{PROCESS_ID}/steps": {
      "get": {
        "tags": [
          "Process"
        ],
        "parameters": [
          {
            "name": "PROCESS_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/ProcessStep"
                  }
                }
              },
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/ProcessStep"
                  }
                }
              },
              "text/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/ProcessStep"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/process/execution/{STARTED_PROCESS_ID}/steps": {
      "get": {
        "tags": [
          "Process"
        ],
        "parameters": [
          {
            "name": "STARTED_PROCESS_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/ProcessStep"
                  }
                }
              },
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/ProcessStep"
                  }
                }
              },
              "text/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/ProcessStep"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/quarterlyconversations/data/{QUARTERLY_CONVERSATION_ID}": {
      "get": {
        "tags": [
          "QuarterlyConversations"
        ],
        "parameters": [
          {
            "name": "QUARTERLY_CONVERSATION_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/SurveyContainer"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/SurveyContainer"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/SurveyContainer"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/quarterlyconversations": {
      "get": {
        "tags": [
          "QuarterlyConversations"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/SurveyContainer"
                  }
                }
              },
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/SurveyContainer"
                  }
                }
              },
              "text/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/SurveyContainer"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/rocks/notes/{ROCK_ID}": {
      "get": {
        "tags": [
          "Rocks"
        ],
        "parameters": [
          {
            "name": "ROCK_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          },
          {
            "name": "showControls",
            "in": "query",
            "schema": {
              "type": "boolean",
              "default": true
            }
          },
          {
            "name": "readOnly",
            "in": "query",
            "schema": {
              "type": "boolean",
              "default": false
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/NotesPadResponse"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/NotesPadResponse"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/NotesPadResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/rocks/user/mine": {
      "get": {
        "tags": [
          "Rocks"
        ],
        "parameters": [
          {
            "name": "Include_Origin",
            "in": "query",
            "schema": {
              "type": "boolean",
              "default": false
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Rock"
                  }
                }
              },
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Rock"
                  }
                }
              },
              "text/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Rock"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/archivedrocks/user/mine": {
      "get": {
        "tags": [
          "Rocks"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Rock"
                  }
                }
              },
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Rock"
                  }
                }
              },
              "text/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Rock"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/rocks/{ROCK_ID}/milestones": {
      "get": {
        "tags": [
          "Rocks"
        ],
        "parameters": [
          {
            "name": "ROCK_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Milestone"
                  }
                }
              },
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Milestone"
                  }
                }
              },
              "text/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Milestone"
                  }
                }
              }
            }
          }
        }
      },
      "post": {
        "tags": [
          "Rocks"
        ],
        "parameters": [
          {
            "name": "ROCK_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/CreateMilestone"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CreateMilestone"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/CreateMilestone"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/CreateMilestone"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/Milestone"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Milestone"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/Milestone"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/rocks/create": {
      "post": {
        "tags": [
          "Rocks"
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/CreateRockModel_"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CreateRockModel_"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/CreateRockModel_"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/CreateRockModel_"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/Rock"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Rock"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/Rock"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/rocks/{ROCK_ID}": {
      "put": {
        "tags": [
          "Rocks"
        ],
        "parameters": [
          {
            "name": "ROCK_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateRock"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateRock"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateRock"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateRock"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "tags": [
          "Rocks"
        ],
        "parameters": [
          {
            "name": "ROCK_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "get": {
        "tags": [
          "Rocks"
        ],
        "parameters": [
          {
            "name": "ROCK_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          },
          {
            "name": "Include_Origin",
            "in": "query",
            "schema": {
              "type": "boolean",
              "default": false
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/Rock"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Rock"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/Rock"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/rocks/user/{USER_ID}": {
      "get": {
        "tags": [
          "Rocks"
        ],
        "parameters": [
          {
            "name": "USER_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          },
          {
            "name": "Include_Origin",
            "in": "query",
            "schema": {
              "type": "boolean",
              "default": false
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Rock"
                  }
                }
              },
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Rock"
                  }
                }
              },
              "text/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Rock"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/archivedrocks/user/{USER_ID}": {
      "get": {
        "tags": [
          "Rocks"
        ],
        "parameters": [
          {
            "name": "USER_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Rock"
                  }
                }
              },
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Rock"
                  }
                }
              },
              "text/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Rock"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/rocks/{ROCK_ID}/restore": {
      "put": {
        "tags": [
          "Rocks"
        ],
        "parameters": [
          {
            "name": "ROCK_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/api/v1/rocks/{ROCK_ID}/archive": {
      "put": {
        "tags": [
          "Rocks"
        ],
        "parameters": [
          {
            "name": "ROCK_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/api/v1/role/{ROLE_ID}": {
      "get": {
        "tags": [
          "Role"
        ],
        "parameters": [
          {
            "name": "ROLE_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/Role"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Role"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/Role"
                }
              }
            }
          }
        }
      },
      "put": {
        "tags": [
          "Role"
        ],
        "parameters": [
          {
            "name": "ROLE_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/Title"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Title"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/Title"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/Title"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "tags": [
          "Role"
        ],
        "parameters": [
          {
            "name": "ROLE_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/api/v1/role/{ROLE_ID}/restore": {
      "patch": {
        "tags": [
          "Role"
        ],
        "parameters": [
          {
            "name": "ROLE_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/api/v1/scorecard/user/mine": {
      "get": {
        "tags": [
          "Scorecard"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/Scorecard"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Scorecard"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/Scorecard"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/scorecard/user/{USER_ID}": {
      "get": {
        "tags": [
          "Scorecard"
        ],
        "parameters": [
          {
            "name": "USER_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/Scorecard"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Scorecard"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/Scorecard"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/scorecard/meeting/{MEETING_ID}": {
      "get": {
        "tags": [
          "Scorecard"
        ],
        "parameters": [
          {
            "name": "MEETING_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/Scorecard"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Scorecard"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/Scorecard"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/scores/{SCORE_ID}": {
      "put": {
        "tags": [
          "Scores_"
        ],
        "parameters": [
          {
            "name": "SCORE_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateScore"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateScore"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateScore"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateScore"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "get": {
        "tags": [
          "Scores_"
        ],
        "parameters": [
          {
            "name": "SCORE_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          },
          {
            "name": "Include_Origin",
            "in": "query",
            "schema": {
              "type": "boolean",
              "default": false
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/Score"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Score"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/Score"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/search/all": {
      "get": {
        "tags": [
          "Search"
        ],
        "parameters": [
          {
            "name": "term",
            "in": "query",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/SearchResult"
                  }
                }
              },
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/SearchResult"
                  }
                }
              },
              "text/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/SearchResult"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/search/user": {
      "get": {
        "tags": [
          "Search"
        ],
        "parameters": [
          {
            "name": "term",
            "in": "query",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/SearchResult"
                  }
                }
              },
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/SearchResult"
                  }
                }
              },
              "text/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/SearchResult"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/seats/{SEAT_ID}/directreport/{USER_ID}": {
      "post": {
        "tags": [
          "Seats"
        ],
        "parameters": [
          {
            "name": "SEAT_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          },
          {
            "name": "USER_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/Seat"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Seat"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/Seat"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/seats/{SEAT_ID}": {
      "get": {
        "tags": [
          "Seats"
        ],
        "parameters": [
          {
            "name": "SEAT_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/Seat"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Seat"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/Seat"
                }
              }
            }
          }
        }
      },
      "delete": {
        "tags": [
          "Seats"
        ],
        "parameters": [
          {
            "name": "SEAT_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/api/v1/seats/{SEAT_ID}/position": {
      "get": {
        "tags": [
          "Seats"
        ],
        "parameters": [
          {
            "name": "SEAT_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/Position"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Position"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/Position"
                }
              }
            }
          }
        }
      },
      "put": {
        "tags": [
          "Seats"
        ],
        "parameters": [
          {
            "name": "SEAT_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/Title"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Title"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/Title"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/Title"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "delete": {
        "tags": [
          "Seats"
        ],
        "parameters": [
          {
            "name": "SEAT_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/api/v1/seats/{SEAT_ID}/users": {
      "get": {
        "tags": [
          "Seats"
        ],
        "parameters": [
          {
            "name": "SEAT_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/User"
                  }
                }
              },
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/User"
                  }
                }
              },
              "text/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/User"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/seats/{SEAT_ID}/user/{USER_ID}": {
      "post": {
        "tags": [
          "Seats"
        ],
        "parameters": [
          {
            "name": "SEAT_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          },
          {
            "name": "USER_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/api/v1/seats/{SEAT_ID}/user": {
      "delete": {
        "tags": [
          "Seats"
        ],
        "parameters": [
          {
            "name": "SEAT_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          },
          {
            "name": "USER_ID",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/api/v1/seats/user/{USER_ID}": {
      "get": {
        "tags": [
          "Seats"
        ],
        "parameters": [
          {
            "name": "USER_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Seat"
                  }
                }
              },
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Seat"
                  }
                }
              },
              "text/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Seat"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/seats/user/mine": {
      "get": {
        "tags": [
          "Seats"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Seat"
                  }
                }
              },
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Seat"
                  }
                }
              },
              "text/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Seat"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/seats/{SEAT_ID}/roles": {
      "get": {
        "tags": [
          "Seats"
        ],
        "parameters": [
          {
            "name": "SEAT_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Role"
                  }
                }
              },
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Role"
                  }
                }
              },
              "text/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Role"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/seats/{SEAT_ID}/role": {
      "put": {
        "tags": [
          "Seats"
        ],
        "parameters": [
          {
            "name": "SEAT_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          },
          {
            "name": "name",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      }
    },
    "/api/v1/teams/create": {
      "post": {
        "tags": [
          "Teams"
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/Title"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Title"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/Title"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/Title"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/Team"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Team"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/Team"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/teams/{TEAM_ID}": {
      "get": {
        "tags": [
          "Teams"
        ],
        "parameters": [
          {
            "name": "TEAM_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/Team"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Team"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/Team"
                }
              }
            }
          }
        }
      },
      "put": {
        "tags": [
          "Teams"
        ],
        "parameters": [
          {
            "name": "TEAM_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/Title"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Title"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/Title"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/Title"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/Team"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Team"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/Team"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/teams/{TEAM_ID}/members": {
      "get": {
        "tags": [
          "Teams"
        ],
        "parameters": [
          {
            "name": "TEAM_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/User"
                  }
                }
              },
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/User"
                  }
                }
              },
              "text/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/User"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/teams/{TEAM_ID}/member/{USER_ID}": {
      "post": {
        "tags": [
          "Teams"
        ],
        "parameters": [
          {
            "name": "TEAM_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          },
          {
            "name": "USER_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "boolean"
                }
              },
              "application/json": {
                "schema": {
                  "type": "boolean"
                }
              },
              "text/json": {
                "schema": {
                  "type": "boolean"
                }
              }
            }
          }
        }
      },
      "delete": {
        "tags": [
          "Teams"
        ],
        "parameters": [
          {
            "name": "TEAM_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          },
          {
            "name": "USER_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "boolean"
                }
              },
              "application/json": {
                "schema": {
                  "type": "boolean"
                }
              },
              "text/json": {
                "schema": {
                  "type": "boolean"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/todo/create": {
      "post": {
        "tags": [
          "Todos"
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/CreateTodo_"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CreateTodo_"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/CreateTodo_"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/CreateTodo_"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/Todo"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Todo"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/Todo"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/todo/{TODO_ID}": {
      "put": {
        "tags": [
          "Todos"
        ],
        "parameters": [
          {
            "name": "TODO_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateTodo"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateTodo"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateTodo"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateTodo"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Success"
          }
        }
      },
      "get": {
        "tags": [
          "Todos"
        ],
        "parameters": [
          {
            "name": "TODO_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/Todo"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Todo"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/Todo"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/todo/{TODO_ID}/complete": {
      "post": {
        "tags": [
          "Todos"
        ],
        "parameters": [
          {
            "name": "TODO_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          },
          {
            "name": "status",
            "in": "query",
            "schema": {
              "type": "boolean",
              "default": true
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "boolean"
                }
              },
              "application/json": {
                "schema": {
                  "type": "boolean"
                }
              },
              "text/json": {
                "schema": {
                  "type": "boolean"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/todo/users/mine": {
      "get": {
        "tags": [
          "Todos"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Todo"
                  }
                }
              },
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Todo"
                  }
                }
              },
              "text/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Todo"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/todo/user/{USER_ID}": {
      "get": {
        "tags": [
          "Todos"
        ],
        "parameters": [
          {
            "name": "USER_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Todo"
                  }
                }
              },
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Todo"
                  }
                }
              },
              "text/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Todo"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/todo/notes/{TODO_ID}": {
      "get": {
        "tags": [
          "Todos"
        ],
        "parameters": [
          {
            "name": "TODO_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          },
          {
            "name": "showControls",
            "in": "query",
            "schema": {
              "type": "boolean",
              "default": true
            }
          },
          {
            "name": "readOnly",
            "in": "query",
            "schema": {
              "type": "boolean",
              "default": false
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/NotesPadResponse"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/NotesPadResponse"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/NotesPadResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/users/{USER_ID}": {
      "get": {
        "tags": [
          "Users_"
        ],
        "parameters": [
          {
            "name": "USER_ID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/User"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/User"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/User"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/users/mine": {
      "get": {
        "tags": [
          "Users_"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/User"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/User"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/User"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/users/{userId}/directreports": {
      "get": {
        "tags": [
          "Users_"
        ],
        "parameters": [
          {
            "name": "userId",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/User"
                  }
                }
              },
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/User"
                  }
                }
              },
              "text/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/User"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/users/minedirectreports": {
      "get": {
        "tags": [
          "Users_"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/User"
                  }
                }
              },
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/User"
                  }
                }
              },
              "text/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/User"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/users/mineviewable": {
      "get": {
        "tags": [
          "Users_"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/User"
                  }
                }
              },
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/User"
                  }
                }
              },
              "text/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/User"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/users/{userId}/seats": {
      "get": {
        "tags": [
          "Users_"
        ],
        "parameters": [
          {
            "name": "userId",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Seat"
                  }
                }
              },
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Seat"
                  }
                }
              },
              "text/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Seat"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/weeks/current": {
      "get": {
        "tags": [
          "Week_"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/Week"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Week"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/Week"
                }
              }
            }
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "AccountabilityGroup": {
        "type": "object",
        "properties": {
          "Id": {
            "type": "integer",
            "format": "int64"
          },
          "Type": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "Key": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "Position": {
            "$ref": "#/components/schemas/Position"
          },
          "Editable": {
            "type": "boolean",
            "nullable": true
          },
          "RoleGroups": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/RoleGroup"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "AttachType": {
        "enum": [
          "Invalid",
          "Position",
          "Team",
          "User",
          "Node",
          "MAX"
        ],
        "type": "integer",
        "format": "int32"
      },
      "CompleteStep": {
        "required": [
          "completion"
        ],
        "type": "object",
        "properties": {
          "completion": {
            "type": "boolean"
          }
        },
        "additionalProperties": false
      },
      "CreateHeadline": {
        "required": [
          "title"
        ],
        "type": "object",
        "properties": {
          "title": {
            "minLength": 1,
            "type": "string"
          },
          "ownerId": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "notes": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "CreateIssue": {
        "required": [
          "meetingId",
          "title"
        ],
        "type": "object",
        "properties": {
          "meetingId": {
            "type": "integer",
            "format": "int64"
          },
          "title": {
            "minLength": 1,
            "type": "string"
          },
          "ownerId": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "notes": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "CreateIssue_": {
        "required": [
          "title"
        ],
        "type": "object",
        "properties": {
          "title": {
            "minLength": 1,
            "type": "string"
          },
          "ownerId": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "details": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "CreateMeasurable": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "nullable": true
          },
          "direction": {
            "$ref": "#/components/schemas/LessGreater"
          },
          "target": {
            "type": "number",
            "format": "double"
          },
          "unitType": {
            "$ref": "#/components/schemas/UnitType"
          },
          "accountableUserId": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "CreateMeeting": {
        "type": "object",
        "properties": {
          "title": {
            "type": "string",
            "nullable": true
          },
          "addSelf": {
            "type": "boolean"
          }
        },
        "additionalProperties": false
      },
      "CreateMilestone": {
        "required": [
          "dueDate",
          "title"
        ],
        "type": "object",
        "properties": {
          "title": {
            "minLength": 1,
            "type": "string"
          },
          "dueDate": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false
      },
      "CreateRock": {
        "required": [
          "title"
        ],
        "type": "object",
        "properties": {
          "title": {
            "minLength": 1,
            "type": "string"
          },
          "accountableUserId": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "CreateRockModel_": {
        "required": [
          "title"
        ],
        "type": "object",
        "properties": {
          "title": {
            "minLength": 1,
            "type": "string"
          },
          "accountableUserId": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "CreateTodo": {
        "required": [
          "title"
        ],
        "type": "object",
        "properties": {
          "title": {
            "minLength": 1,
            "type": "string"
          },
          "details": {
            "type": "string",
            "nullable": true
          },
          "accountableUserId": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "dueDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "CreateTodo_": {
        "required": [
          "title"
        ],
        "type": "object",
        "properties": {
          "title": {
            "minLength": 1,
            "type": "string"
          },
          "notes": {
            "type": "string",
            "nullable": true
          },
          "dueDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "CreatedMeeting": {
        "type": "object",
        "properties": {
          "meetingId": {
            "type": "integer",
            "format": "int64"
          }
        },
        "additionalProperties": false
      },
      "DayOfWeek": {
        "enum": [
          "Sunday",
          "Monday",
          "Tuesday",
          "Wednesday",
          "Thursday",
          "Friday",
          "Saturday"
        ],
        "type": "integer",
        "format": "int32"
      },
      "For": {
        "type": "object",
        "properties": {
          "ModelId": {
            "type": "integer",
            "format": "int64"
          },
          "ModelType": {
            "type": "string",
            "nullable": true
          },
          "PrettyString": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Frequency": {
        "enum": [
          "WEEKLY",
          "MONTHLY",
          "QUARTERLY",
          "DAILY"
        ],
        "type": "integer",
        "format": "int32"
      },
      "Headline": {
        "type": "object",
        "properties": {
          "Id": {
            "type": "integer",
            "format": "int64"
          },
          "Type": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "Key": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "Name": {
            "type": "string",
            "nullable": true
          },
          "DetailsUrl": {
            "type": "string",
            "nullable": true
          },
          "Owner": {
            "$ref": "#/components/schemas/User"
          },
          "CloseTime": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "CreateTime": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "About": {
            "$ref": "#/components/schemas/Picture"
          },
          "Archived": {
            "type": "boolean",
            "nullable": true
          },
          "Permission": {
            "$ref": "#/components/schemas/PermissionDto"
          },
          "Origin": {
            "type": "string",
            "nullable": true
          },
          "OriginId": {
            "type": "integer",
            "format": "int64"
          },
          "HasAudio": {
            "type": "boolean"
          }
        },
        "additionalProperties": false
      },
      "IFor": {
        "type": "object",
        "properties": {
          "ModelId": {
            "type": "integer",
            "format": "int64",
            "readOnly": true
          },
          "ModelType": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          }
        },
        "additionalProperties": false
      },
      "Issue": {
        "type": "object",
        "properties": {
          "Name": {
            "type": "string",
            "nullable": true
          },
          "Id": {
            "type": "integer",
            "format": "int64"
          },
          "Type": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "Key": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "Owner": {
            "$ref": "#/components/schemas/User"
          },
          "DetailsUrl": {
            "type": "string",
            "nullable": true
          },
          "DeleteTime": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "Complete": {
            "type": "boolean",
            "nullable": true
          },
          "Archived": {
            "type": "boolean",
            "nullable": true
          },
          "IsLongTerm": {
            "type": "boolean"
          },
          "CreateTime": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "CloseTime": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "Origin": {
            "type": "string",
            "nullable": true
          },
          "OriginId": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "Priority": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "Permission": {
            "$ref": "#/components/schemas/PermissionDto"
          },
          "HasAudio": {
            "type": "boolean"
          },
          "FromWhere": {
            "type": "string",
            "nullable": true
          },
          "MovedToMeeting": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "IssueCompartment": {
        "enum": [
          "ShortTerm",
          "LongTerm"
        ],
        "type": "integer",
        "format": "int32"
      },
      "IssuesList": {
        "type": "object",
        "properties": {
          "Id": {
            "type": "integer",
            "format": "int64"
          },
          "Type": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "Key": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "Issues": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Issue"
            },
            "nullable": true
          },
          "Prioritization": {
            "$ref": "#/components/schemas/PrioritizationType"
          }
        },
        "additionalProperties": false
      },
      "L10PageType": {
        "enum": [
          "Empty",
          "Segue",
          "Scorecard",
          "Rocks",
          "Headlines",
          "Todo",
          "IDS",
          "Conclude",
          "NotesBox",
          "ExternalPage",
          "Whiteboard",
          "Mixed",
          "Html"
        ],
        "type": "integer",
        "format": "int32"
      },
      "L10TeamType": {
        "enum": [
          "LeadershipTeam",
          "DepartmentalTeam",
          "SamePageMeeting",
          "Other"
        ],
        "type": "integer",
        "format": "int32"
      },
      "LessGreater": {
        "enum": [
          "EqualTo",
          "GreaterThan",
          "GreaterThanNotEqual",
          "Between",
          "LessThanOrEqual",
          "LessThan"
        ],
        "type": "string"
      },
      "LocalDateTime": {
        "type": "object",
        "properties": {
          "Local": {
            "type": "boolean",
            "readOnly": true
          },
          "Date": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false
      },
      "Measurable": {
        "type": "object",
        "properties": {
          "Name": {
            "type": "string",
            "nullable": true
          },
          "Id": {
            "type": "integer",
            "format": "int64"
          },
          "Type": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "Key": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "Owner": {
            "$ref": "#/components/schemas/User"
          },
          "Admin": {
            "$ref": "#/components/schemas/User"
          },
          "HasV3Config": {
            "type": "boolean"
          },
          "Target": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "AltTarget": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "Direction": {
            "$ref": "#/components/schemas/LessGreater"
          },
          "IsDivider": {
            "type": "boolean"
          },
          "IsReorderable": {
            "type": "boolean",
            "nullable": true
          },
          "ShowCumulative": {
            "type": "boolean",
            "nullable": true
          },
          "Cumulative": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "CumulativeRange": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "Modifiers": {
            "$ref": "#/components/schemas/UnitType"
          },
          "Frequency": {
            "$ref": "#/components/schemas/Frequency"
          },
          "Ordering": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "Disabled": {
            "type": "boolean",
            "nullable": true
          },
          "Generated": {
            "type": "boolean",
            "nullable": true
          },
          "IsFormula": {
            "type": "boolean",
            "nullable": true
          },
          "Average": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "ShowAverage": {
            "type": "boolean",
            "nullable": true
          },
          "AverageRange": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "Permission": {
            "$ref": "#/components/schemas/PermissionDto"
          },
          "Origins": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/NameId"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "MeasurableOrder": {
        "type": "object",
        "properties": {
          "Id": {
            "type": "string",
            "nullable": true
          },
          "Type": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "ScorecardId": {
            "type": "integer",
            "format": "int64"
          },
          "MeasurableId": {
            "type": "integer",
            "format": "int64"
          },
          "Ordering": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "Key": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          }
        },
        "additionalProperties": false
      },
      "Meeting": {
        "title": "Meeting",
        "type": "object",
        "properties": {
          "Id": {
            "type": "integer",
            "format": "int64"
          },
          "Type": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "Key": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "CreateTime": {
            "type": "string",
            "format": "date-time"
          },
          "PrintOutRockStatus": {
            "type": "boolean"
          },
          "CreatedBy": {
            "$ref": "#/components/schemas/User"
          },
          "Basics": {
            "$ref": "#/components/schemas/Settings"
          },
          "Attendees": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/User"
            },
            "nullable": true
          },
          "Scorecard": {
            "$ref": "#/components/schemas/Scorecard"
          },
          "Notes": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/MeetingNotes"
            },
            "nullable": true
          },
          "Rocks": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Rock"
            },
            "nullable": true
          },
          "Todos": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Todo"
            },
            "nullable": true
          },
          "Milestones": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Todo"
            },
            "nullable": true
          },
          "Headlines": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Headline"
            },
            "nullable": true
          },
          "IssuesList": {
            "$ref": "#/components/schemas/IssuesList"
          },
          "HeadlinesUrl": {
            "type": "string",
            "nullable": true
          },
          "HeadlineType": {
            "$ref": "#/components/schemas/PeopleHeadlineType"
          },
          "VtoId": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "Pages": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Page"
            },
            "nullable": true
          },
          "MeetingType": {
            "$ref": "#/components/schemas/MeetingType"
          }
        },
        "additionalProperties": false
      },
      "MeetingNotes": {
        "type": "object",
        "properties": {
          "Id": {
            "type": "integer",
            "format": "int64"
          },
          "Type": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "Key": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "DetailsUrl": {
            "type": "string",
            "nullable": true
          },
          "Title": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "MeetingType": {
        "enum": [
          "L10",
          "SamePage",
          "QAM"
        ],
        "type": "integer",
        "format": "int32"
      },
      "Milestone": {
        "type": "object",
        "properties": {
          "Id": {
            "type": "integer",
            "format": "int64"
          },
          "Type": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "Key": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "DueDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "Name": {
            "type": "string",
            "nullable": true
          },
          "Status": {
            "$ref": "#/components/schemas/MilestoneStatus"
          },
          "RockId": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "MilestoneStatus": {
        "enum": [
          "NotDone",
          "Done"
        ],
        "type": "string"
      },
      "NameId": {
        "type": "object",
        "properties": {
          "Id": {
            "type": "integer",
            "format": "int64"
          },
          "Type": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "Key": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "Name": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "NotesPadResponse": {
        "type": "object",
        "properties": {
          "URL": {
            "type": "string",
            "format": "uri",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Page": {
        "title": "Page",
        "type": "object",
        "properties": {
          "Minutes": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "Title": {
            "type": "string",
            "nullable": true
          },
          "Type": {
            "$ref": "#/components/schemas/L10PageType"
          }
        },
        "additionalProperties": false
      },
      "PeopleHeadlineType": {
        "enum": [
          "None",
          "HeadlinesBox",
          "HeadlinesList"
        ],
        "type": "integer",
        "format": "int32"
      },
      "PermissionDto": {
        "type": "object",
        "properties": {
          "CanEdit": {
            "type": "boolean"
          }
        },
        "additionalProperties": false
      },
      "Picture": {
        "type": "object",
        "properties": {
          "Id": {
            "type": "integer",
            "format": "int64"
          },
          "Type": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "Key": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "ImageUrl": {
            "type": "string",
            "nullable": true
          },
          "Name": {
            "type": "string",
            "nullable": true
          },
          "Initials": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Position": {
        "type": "object",
        "properties": {
          "Id": {
            "type": "integer",
            "format": "int64"
          },
          "Type": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "Key": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "Name": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "PrioritizationType": {
        "enum": [
          "Priority",
          "Rank"
        ],
        "type": "integer",
        "format": "int32"
      },
      "Process": {
        "type": "object",
        "properties": {
          "Id": {
            "type": "integer",
            "format": "int64"
          },
          "Type": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "Key": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "Name": {
            "type": "string",
            "nullable": true
          },
          "Description": {
            "type": "string",
            "nullable": true
          },
          "FolderId": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "Favorite": {
            "type": "boolean",
            "nullable": true
          },
          "CreateTime": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "ProcessExecution": {
        "type": "object",
        "properties": {
          "Id": {
            "type": "integer",
            "format": "int64"
          },
          "Type": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "Key": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "ProcessId": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "Name": {
            "type": "string",
            "nullable": true
          },
          "Description": {
            "type": "string",
            "nullable": true
          },
          "Creator": {
            "$ref": "#/components/schemas/User"
          },
          "CreateTime": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "CompleteTime": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "LastModifiedTime": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "CompletedSteps": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "TotalSteps": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "Complete": {
            "type": "boolean",
            "nullable": true
          },
          "CompletionPercentage": {
            "type": "number",
            "format": "double",
            "nullable": true,
            "readOnly": true
          }
        },
        "additionalProperties": false
      },
      "ProcessFolder": {
        "type": "object",
        "properties": {
          "Id": {
            "type": "integer",
            "format": "int64"
          },
          "Type": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "Key": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "Name": {
            "type": "string",
            "nullable": true
          },
          "ParentFolderId": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "ProcessStep": {
        "type": "object",
        "properties": {
          "Id": {
            "type": "integer",
            "format": "int64"
          },
          "Type": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "Key": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "Name": {
            "type": "string",
            "nullable": true
          },
          "Description": {
            "type": "string",
            "nullable": true
          },
          "Substeps": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ProcessStep"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "RGMType": {
        "enum": [
          "Invalid",
          "User",
          "Organization",
          "Team",
          "Position",
          "SearchResult"
        ],
        "type": "integer",
        "format": "int32"
      },
      "Rock": {
        "type": "object",
        "properties": {
          "Id": {
            "type": "integer",
            "format": "int64"
          },
          "Type": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "Key": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "Name": {
            "type": "string",
            "nullable": true
          },
          "Owner": {
            "$ref": "#/components/schemas/User"
          },
          "DueDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "Complete": {
            "type": "boolean",
            "nullable": true
          },
          "Completion": {
            "$ref": "#/components/schemas/RockState"
          },
          "CreateTime": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "Archived": {
            "type": "boolean",
            "nullable": true
          },
          "RecurrenceRockId": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "VtoRock": {
            "type": "boolean",
            "nullable": true
          },
          "Permission": {
            "$ref": "#/components/schemas/PermissionDto"
          },
          "Origins": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/NameId"
            },
            "nullable": true
          },
          "HasAudio": {
            "type": "boolean"
          }
        },
        "additionalProperties": false
      },
      "RockState": {
        "enum": [
          "AtRisk",
          "OnTrack",
          "Complete",
          "Indeterminate"
        ],
        "type": "integer",
        "format": "int32"
      },
      "Role": {
        "type": "object",
        "properties": {
          "Id": {
            "type": "integer",
            "format": "int64"
          },
          "Type": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "Key": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "Name": {
            "type": "string",
            "nullable": true
          },
          "Ordering": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "CreateTime": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "RoleGroup": {
        "type": "object",
        "properties": {
          "Id": {
            "type": "integer",
            "format": "int64"
          },
          "Type": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "Key": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "AttachType": {
            "$ref": "#/components/schemas/AttachType"
          },
          "AttachId": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "AttachName": {
            "type": "string",
            "nullable": true
          },
          "Editable": {
            "type": "boolean",
            "nullable": true
          },
          "Roles": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Role"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Score": {
        "type": "object",
        "properties": {
          "Id": {
            "type": "integer",
            "format": "int64"
          },
          "Type": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "Key": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "ForWeek": {
            "type": "integer",
            "format": "int64"
          },
          "Week": {
            "type": "string",
            "format": "date-time"
          },
          "MeasurableId": {
            "type": "integer",
            "format": "int64"
          },
          "MeasurableName": {
            "type": "string",
            "nullable": true
          },
          "Origins": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/NameId"
            },
            "nullable": true
          },
          "DateEntered": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "Measured": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "Disabled": {
            "type": "boolean",
            "nullable": true
          },
          "Direction": {
            "$ref": "#/components/schemas/LessGreater"
          },
          "Target": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "AltTarget": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "OrganizationId": {
            "type": "integer",
            "format": "int64"
          },
          "AccountableUserId": {
            "type": "integer",
            "format": "int64"
          }
        },
        "additionalProperties": false
      },
      "Scorecard": {
        "type": "object",
        "properties": {
          "Id": {
            "type": "integer",
            "format": "int64"
          },
          "Type": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "Key": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "MeasurableOrder": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/MeasurableOrder"
            },
            "nullable": true
          },
          "Measurables": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Measurable"
            },
            "nullable": true
          },
          "Scores": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Score"
            },
            "nullable": true
          },
          "Weeks": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Week"
            },
            "nullable": true
          },
          "ReverseScorecard": {
            "type": "boolean",
            "nullable": true
          },
          "ScorecardWeekDay": {
            "$ref": "#/components/schemas/DayOfWeek"
          },
          "Period": {
            "type": "string",
            "nullable": true
          },
          "DateFormat1": {
            "type": "string",
            "nullable": true
          },
          "DateFormat2": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "SearchResult": {
        "type": "object",
        "properties": {
          "Id": {
            "type": "integer",
            "format": "int64"
          },
          "Name": {
            "type": "string",
            "nullable": true
          },
          "Description": {
            "type": "string",
            "nullable": true
          },
          "OrganizationId": {
            "type": "integer",
            "format": "int64"
          },
          "Organization": {
            "type": "string",
            "nullable": true
          },
          "Email": {
            "type": "string",
            "nullable": true
          },
          "ImageUrl": {
            "type": "string",
            "nullable": true
          },
          "AltIcon": {
            "type": "string",
            "nullable": true
          },
          "ResultType": {
            "$ref": "#/components/schemas/RGMType"
          },
          "ItemName": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "ItemImageUrl": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "ItemValue": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "ItemDescription": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          }
        },
        "additionalProperties": false
      },
      "Seat": {
        "title": "Seat",
        "type": "object",
        "properties": {
          "Id": {
            "type": "integer",
            "format": "int64"
          },
          "Type": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "Key": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "Highlight": {
            "type": "boolean",
            "nullable": true
          },
          "Name": {
            "type": "string",
            "nullable": true
          },
          "Group": {
            "$ref": "#/components/schemas/AccountabilityGroup"
          },
          "Users": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/User"
            },
            "nullable": true
          },
          "Children": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Seat"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Settings": {
        "title": "Settings",
        "type": "object",
        "properties": {
          "Id": {
            "type": "integer",
            "format": "int64"
          },
          "Type": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "Key": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "Name": {
            "type": "string",
            "nullable": true
          },
          "TeamType": {
            "$ref": "#/components/schemas/L10TeamType"
          }
        },
        "additionalProperties": false
      },
      "Survey": {
        "type": "object",
        "properties": {
          "Id": {
            "type": "integer",
            "format": "int64"
          },
          "Type": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "Key": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "SurveyContainerId": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "Sections": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/SurveySection"
            },
            "nullable": true
          },
          "Name": {
            "type": "string",
            "nullable": true
          },
          "Help": {
            "type": "string",
            "nullable": true
          },
          "Ordering": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "IssueDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "DueDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "ImageUrl": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "SurveyContainer": {
        "type": "object",
        "properties": {
          "Id": {
            "type": "integer",
            "format": "int64"
          },
          "Type": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "Key": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "Name": {
            "type": "string",
            "nullable": true
          },
          "CreateTime": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "Locked": {
            "type": "boolean",
            "nullable": true
          },
          "SurveyType": {
            "$ref": "#/components/schemas/SurveyType"
          },
          "Help": {
            "type": "string",
            "nullable": true
          },
          "Ordering": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "Surveys": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Survey"
            },
            "nullable": true
          },
          "IssueDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "IssuedBy": {
            "$ref": "#/components/schemas/User"
          },
          "DueDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "Creator": {
            "$ref": "#/components/schemas/IFor"
          },
          "DueDateString": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "IssueDateString": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          }
        },
        "additionalProperties": false
      },
      "SurveyItem": {
        "type": "object",
        "properties": {
          "Id": {
            "type": "integer",
            "format": "int64"
          },
          "Type": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "Key": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "Name": {
            "type": "string",
            "nullable": true
          },
          "Help": {
            "type": "string",
            "nullable": true
          },
          "Ordering": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "ItemFormatId": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "SectionId": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "Source": {
            "$ref": "#/components/schemas/For"
          },
          "ItemMergerKey": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "SurveyItemContainer": {
        "type": "object",
        "properties": {
          "Id": {
            "type": "integer",
            "format": "int64"
          },
          "Type": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "Key": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "Name": {
            "type": "string",
            "nullable": true
          },
          "Help": {
            "type": "string",
            "nullable": true
          },
          "ItemMergerKey": {
            "type": "string",
            "nullable": true
          },
          "Ordering": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "Item": {
            "$ref": "#/components/schemas/SurveyItem"
          },
          "Response": {
            "$ref": "#/components/schemas/SurveyResponse"
          },
          "ItemFormat": {
            "$ref": "#/components/schemas/SurveyItemFormat"
          }
        },
        "additionalProperties": false
      },
      "SurveyItemFormat": {
        "type": "object",
        "properties": {
          "Id": {
            "type": "integer",
            "format": "int64"
          },
          "Type": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "Key": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "Name": {
            "type": "string",
            "nullable": true
          },
          "Help": {
            "type": "string",
            "nullable": true
          },
          "Ordering": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "ItemType": {
            "$ref": "#/components/schemas/SurveyItemType"
          },
          "QuestionIdentifier": {
            "$ref": "#/components/schemas/SurveyQuestionIdentifier"
          },
          "TemplateModifier": {
            "type": "string",
            "nullable": true
          },
          "Settings": {
            "type": "object",
            "additionalProperties": { },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "SurveyItemType": {
        "enum": [
          "Invalid",
          "TextArea",
          "TextBox",
          "Radio",
          "Text",
          "Number"
        ],
        "type": "integer",
        "format": "int32"
      },
      "SurveyQuestionIdentifier": {
        "enum": [
          "None",
          "Value",
          "GWC",
          "Rock",
          "Role",
          "LeadershipAssessment",
          "ManagementAssessment",
          "RockCompletion",
          "GeneralComment"
        ],
        "type": "integer",
        "format": "int32"
      },
      "SurveyResponse": {
        "type": "object",
        "properties": {
          "Id": {
            "type": "integer",
            "format": "int64"
          },
          "Type": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "Key": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "Name": {
            "type": "string",
            "nullable": true
          },
          "Help": {
            "type": "string",
            "nullable": true
          },
          "Ordering": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "ItemFormatId": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "ItemId": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "By": {
            "$ref": "#/components/schemas/For"
          },
          "About": {
            "$ref": "#/components/schemas/For"
          },
          "Answer": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "SurveySection": {
        "type": "object",
        "properties": {
          "Id": {
            "type": "integer",
            "format": "int64"
          },
          "Type": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "Key": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "Name": {
            "type": "string",
            "nullable": true
          },
          "Help": {
            "type": "string",
            "nullable": true
          },
          "Ordering": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "SectionType": {
            "type": "string",
            "nullable": true
          },
          "SurveyId": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "SectionMergerKey": {
            "type": "string",
            "nullable": true
          },
          "Items": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/SurveyItemContainer"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "SurveyType": {
        "enum": [
          "Invalid",
          "QuarterlyConversation",
          "AnnualReview"
        ],
        "type": "integer",
        "format": "int32"
      },
      "Team": {
        "type": "object",
        "properties": {
          "Id": {
            "type": "integer",
            "format": "int64"
          },
          "Type": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "Key": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "Name": {
            "type": "string",
            "nullable": true
          },
          "ManagedBy": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "TeamType": {
            "$ref": "#/components/schemas/TeamType"
          }
        },
        "additionalProperties": false
      },
      "TeamType": {
        "enum": [
          "Standard",
          "Subordinates",
          "Managers",
          "AllMembers"
        ],
        "type": "integer",
        "format": "int32"
      },
      "Title": {
        "required": [
          "title"
        ],
        "type": "object",
        "properties": {
          "title": {
            "minLength": 1,
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "Todo": {
        "type": "object",
        "properties": {
          "Id": {
            "type": "integer",
            "format": "int64"
          },
          "Type": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "Key": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "ContextTitle": {
            "type": "string",
            "nullable": true
          },
          "ContextType": {
            "type": "string",
            "nullable": true
          },
          "Name": {
            "type": "string",
            "nullable": true
          },
          "DetailsUrl": {
            "type": "string",
            "nullable": true
          },
          "Origin": {
            "type": "string",
            "nullable": true
          },
          "OriginId": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "DueDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "Owner": {
            "$ref": "#/components/schemas/User"
          },
          "CloseTime": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "CompleteTime": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "CreateTime": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "Complete": {
            "type": "boolean",
            "nullable": true
          },
          "TodoType": {
            "$ref": "#/components/schemas/TodoType"
          },
          "Ordering": {
            "type": "integer",
            "format": "int64"
          },
          "Permission": {
            "$ref": "#/components/schemas/PermissionDto"
          },
          "HasAudio": {
            "type": "boolean"
          },
          "Version": {
            "type": "integer",
            "format": "int32"
          },
          "LastUpdatedBy": {
            "type": "string",
            "nullable": true
          },
          "DateLastModified": {
            "type": "number",
            "format": "double"
          }
        },
        "additionalProperties": false
      },
      "TodoType": {
        "enum": [
          "Recurrence",
          "Personal",
          "Milestone"
        ],
        "type": "integer",
        "format": "int32"
      },
      "UnitType": {
        "enum": [
          "None",
          "Dollar",
          "Percent",
          "Pound",
          "Euros",
          "Pesos",
          "Yen",
          "YesNo",
          "INR",
          "Dirham",
          "Rand",
          "XCG"
        ],
        "type": "string"
      },
      "UpdateIssue": {
        "type": "object",
        "properties": {
          "title": {
            "type": "string",
            "nullable": true
          },
          "ownerId": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "compartment": {
            "$ref": "#/components/schemas/IssueCompartment"
          }
        },
        "additionalProperties": false
      },
      "UpdateIssueModelCompletion": {
        "type": "object",
        "properties": {
          "complete": {
            "type": "boolean",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "UpdateMeasurable": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "nullable": true
          },
          "direction": {
            "$ref": "#/components/schemas/LessGreater"
          },
          "target": {
            "type": "number",
            "format": "double"
          },
          "unitType": {
            "$ref": "#/components/schemas/UnitType"
          },
          "altTarget": {
            "type": "number",
            "format": "double",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "UpdateMilestone": {
        "type": "object",
        "properties": {
          "title": {
            "type": "string",
            "nullable": true
          },
          "dueDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "status": {
            "$ref": "#/components/schemas/MilestoneStatus"
          }
        },
        "additionalProperties": false
      },
      "UpdateRock": {
        "type": "object",
        "properties": {
          "title": {
            "type": "string",
            "nullable": true
          },
          "accountableUserId": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "completion": {
            "$ref": "#/components/schemas/RockState"
          }
        },
        "additionalProperties": false
      },
      "UpdateScore": {
        "type": "object",
        "properties": {
          "value": {
            "type": "number",
            "format": "double",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "UpdateTodo": {
        "type": "object",
        "properties": {
          "title": {
            "type": "string",
            "nullable": true
          },
          "dueDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "User": {
        "type": "object",
        "properties": {
          "Id": {
            "type": "integer",
            "format": "int64"
          },
          "Type": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "Key": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "Name": {
            "type": "string",
            "nullable": true
          },
          "ImageUrl": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "Week": {
        "type": "object",
        "properties": {
          "Id": {
            "type": "integer",
            "format": "int64"
          },
          "Type": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "Key": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          },
          "ForWeekNumber": {
            "type": "integer",
            "format": "int64"
          },
          "ForWeek": {
            "type": "string",
            "format": "date-time"
          },
          "DisplayDate": {
            "type": "string",
            "format": "date-time"
          },
          "LocalDate": {
            "$ref": "#/components/schemas/LocalDateTime"
          },
          "IsCurrentWeek": {
            "type": "boolean"
          }
        },
        "additionalProperties": false
      }
    },
    "securitySchemes": {
      "Bearer": {
        "type": "http",
        "description": "JWT Bearer Authentication",
        "scheme": "bearer",
        "bearerFormat": "JWT"
      }
    }
  },
  "security": [
    {
      "Bearer": [ ]
    }
  ]
}