> ## Documentation Index
> Fetch the complete documentation index at: https://docs.activeviam.com/llms.txt
> Use this file to discover all available pages before exploring further.

# application-mr.yaml

> Reference for the application-mr.yaml Spring profile in Atoti Sign-Off, listing all properties for connecting to the Atoti Market Risk application server.

## File purpose

This profile is used to connect to [Atoti Market Risk](/solutions/market-risk).

## File location

This file is not shipped in the releases to avoid confusion for users that do not use Atoti Market Risk. We provide it here as a reference.

| Key                                                                                                        | Value                    | Description                                                                                            |
| ---------------------------------------------------------------------------------------------------------- | ------------------------ | ------------------------------------------------------------------------------------------------------ |
| `sign-off.application.settings.as-of-date-dimensions.MR.cube-dimension."[*]".as-of-date.dimension-name`    | Dates                    | The name of the dimension that contains the as-of-date dimension for all cubes in MR.                  |
| `sign-off.application.settings.as-of-date-dimensions.MR.cube-dimension."[*]".as-of-date.hierarchy-name`    | Date                     | The name of the hierarchy that contains the as-of-date dimension for all cubes in MR.                  |
| `sign-off.application.settings.as-of-date-dimensions.MR.cube-dimension."[*]".as-of-date.level-name`        | AsOfDate                 | The name of the level that contains the as-of-date dimension for all cubes in MR.                      |
| `sign-off.application.settings.restricted-cubes.MR.[0]`                                                    | VaR-ES Summary Cube      | The name of one of the cubes in MR where adjustments are not allowed.                                  |
| `sign-off.application.settings.restricted-cubes.MR.[1]`                                                    | Sensitivity Summary Cube | The name of one of the cubes in MR where adjustments are not allowed.                                  |
| `sign-off.application.settings.restricted-cubes.MR.[2]`                                                    | PL Summary Cube          | The name of one of the cubes in MR where adjustments are not allowed.                                  |
| `sign-off.application.settings.restricted-cubes.MR.[3]`                                                    | Market Data Cube         | The name of one of the cubes in MR where adjustments are not allowed.                                  |
| `sign-off.application.settings.restricted-cubes.MR.[4]`                                                    | MRCombinedCube           | The name of one of the cubes in MR where adjustments are not allowed.                                  |
| `sign-off.application.settings.available-scope-levels.MR.available-levels-by-cube."[*]"[0].dimension-name` | Organization             | The name of a dimension that that can be used when defining a scope for a task across all cubes in MR. |
| `sign-off.application.settings.available-scope-levels.MR.available-levels-by-cube."[*]"[0].hierarchy-name` | BookHierarchy            | The name of a hierarchy that that can be used when defining a scope for a task across all cubes in MR. |
| `sign-off.application.settings.available-scope-levels.MR.available-levels-by-cube."[*]"[0].level-name`     | Level 5                  | The name of a level that that can be used when defining a scope for a task across all cubes in MR.     |
| `sign-off.application.settings.available-scope-levels.MR.available-levels-by-cube."[*]"[1].dimension-name` | Booking                  | The name of a dimension that that can be used when defining a scope for a task across all cubes in MR. |
| `sign-off.application.settings.available-scope-levels.MR.available-levels-by-cube."[*]"[1].hierarchy-name` | Books                    | The name of a hierarchy that that can be used when defining a scope for a task across all cubes in MR. |
| `sign-off.application.settings.available-scope-levels.MR.available-levels-by-cube."[*]"[1].level-name`     | Book                     | The name of a level that that can be used when defining a scope for a task across all cubes in MR.     |
| `sign-off.application.settings.available-scope-levels.MR.available-levels-by-cube."[*]"[2].dimension-name` | Booking                  | The name of a dimension that that can be used when defining a scope for a task across all cubes in MR. |
| `sign-off.application.settings.available-scope-levels.MR.available-levels-by-cube."[*]"[2].hierarchy-name` | Desks                    | The name of a hierarchy that that can be used when defining a scope for a task across all cubes in MR. |
| `sign-off.application.settings.available-scope-levels.MR.available-levels-by-cube."[*]"[2].level-name`     | Desk                     | The name of a level that that can be used when defining a scope for a task across all cubes in MR.     |

### YAML

<Accordion title="Expand to see properties as yaml">
  ````yaml theme={"languages":{"custom":["/engine/python-sdk/0.9/languages/pycon.tmLanguage.json"]}}
  sign-off:
    application:
      settings:
        as-of-date-dimensions:
          MR:
            cube-dimension:
              "[*]":
                as-of-date:
                  dimension-name: Dates
                  hierarchy-name: Date
                  level-name: AsOfDate
        restricted-cubes:
          MR:
            - VaR-ES Summary Cube
            - Sensitivity Summary Cube
            - PL Summary Cube
            - Market Data Cube
            - MRCombinedCube
        available-scope-levels:
          MR:
            available-levels-by-cube:
              "[*]":
                - dimension-name: Organization
                  hierarchy-name: BookHierarchy
                  level-name: Level 5
                - dimension-name: Booking
                  hierarchy-name: Books
                  level-name: Book
                - dimension-name: Booking
                  hierarchy-name: Desks
                  level-name: Desk
                - dimension-name: Risk
                  hierarchy-name: Scenario Sets
                  level-name: Scenario Set
        feed-member-coordinate:
          dimension-name: Sign-off
          hierarchy-name: Sign-off Status
          level-name: Feed
          member: [ TOTAL REVIEWABLE ]
      rest-apis:
        MR:
          url: http://localhost:10010/mr-application
          user: admin
          cubes:
            '[VaR-ES Cube]':
              as-of-date-level: "[Dates].[Date].[AsOfDate]"
            '[VaR-ES Summary Cube]':
              as-of-date-level: "[Dates].[Date].[AsOfDate]"
            '[Sensitivity Cube]':
              as-of-date-level: "[Dates].[Date].[AsOfDate]"
            '[Sensitivity Summary Cube]':
              as-of-date-level: "[Dates].[Date].[AsOfDate]"
            PLCube:
              as-of-date-level: "[Dates].[Date].[AsOfDate]"
            '[PL Summary Cube]':
              as-of-date-level: "[Dates].[Date].[AsOfDate]"
            MRCombinedCube:
              as-of-date-level: "[Dates].[Date].[AsOfDate]"
      authentication-mode: jwt
      ```
  ````
</Accordion>
