action enode_post_charginglocations { label: "Create Charging Location" provider: enode method: POST path: "/charging-locations" encoding: json input: { type: "object" required: ["id"] properties: { id: { type: "string" format: "uuid" description: "Charging Location ID" } latitude: { type: "number" description: "Latitude in degrees" } longitude: { type: "number" description: "Longitude in degrees" } name: { type: "string" description: "User-supplied name for the Charging Location" } } } output: { type: "object" additionalProperties: true } }