action ijenko_place_electricity_get_flows { label: "Get electricity virtual flows" description: "Get the mapping of virtual electricity flows to functionalities.\n\nSome rules are applied to expand the virtual flows using the concrete\nflows available.\n\nThe `factor` tells how each energy value coming from a functionality\nmust be added with values from other functionality to compute the\nenergy of the virtual flow. Factors are usually `1` or `-1`.\n\nThe `code` property gives the result which may be partial:\n- If all flows are available, `200000` is returned.\n- If no flows are available (indicating that the place has no\n electricity functionality or that no functionality has been attached\n to a flow), the `code` is `200001`. The `missing` property contains\n all the requested flows.\n- If some flows are missing, the `code` is `200002` and the `missing`\n property lists them.\n" provider: ijenko method: GET path: "/places/{placeId}/electricity/flows" encoding: json input: { type: "object" properties: { flows: { type: "string" } } required: ["flows"] additionalProperties: false } output: { type: "object" additionalProperties: true } }