action osisoft_configuration_get { label: "Get the value of a configuration item." description: "The response content may vary based on the configuration item's data type." provider: osisoft method: GET path: "/system/configuration/{key}" encoding: json input: { type: "object" properties: { key: { type: "string" } } required: ["key"] additionalProperties: false } output: { type: "object" additionalProperties: true } }