Skip to main content
JSON Manual Created Edited

DESIGN/RC/KDS-41-20-2022/PMDM : P-M Curve Calculation Method

Input URI

{base url} + DESIGN/RC/KDS-41-20-2022/PMDM



Active Methods

POST,GET,DELETE,PUT



JSON Schema

Details

{
  "type""object",
  "additionalProperties"false,
  "required": [
    "Assign"
  ],
  "properties": {
    "Assign": {
      "type""object",
      "description""Object keyed by member ID strings (e.g., \"1059\"), where each value is a PMDM setting object.",
      "minProperties"1,
      "additionalProperties"false,
      "patternProperties": {
        "^[0-9]+$": {
          "type""object",
          "additionalProperties"false,
          "required": [
            "CALC_METHOD"
          ],
          "properties": {
            "CALC_METHOD": {
              "type""string",
              "description""Calculation method for PM interaction design.",
              "oneOf": [
                {
                  "title""P",
                  "const""P"
                },
                {
                  "title""M/P",
                  "const""M/P"
                }
              ]
            }
          }
        }
      }
    }
  }
}


Request Examples

Example

{
  "Assign": {
    "915": {
      "CALC_METHOD": "P"
    }
  }
}


Response Examples

Example

{
  "PMDM": {
    "915": {
      "CALC_METHOD": "P"
    }
  }
}


Specifications

Keyed Object Entry

No. Description Key Value Type Default Required

Root Object

1

Object keyed by member ID strings (e.g., "1059"), where each value is a PMDM setting object.

"Assign"

object

-

Required



Item (Value Object Schema)

No. Description Key Value Type Default Required

General

1

Calculation Method

• P: "P"

• M/P: "M/P"

"CALC_METHOD"

string

-

Required



0
Was this article helpful?