action autodealerdata_get_avg_sale_price_sale_price_get { label: "Stats on sale price of new vehicles" description: "Average, median, standard deviation, and population variance of the sale price of new vehicles over the last 15 days for a given brand and region.\n\nThe available brand and region names can be retrieved from their respective endpoints." provider: autodealerdata method: GET path: "/salePrice" encoding: json input: { type: "object" properties: { brandName: { type: "string" } jwt: { type: "string" } regionName: { type: "string" } } required: ["brandName", "jwt"] additionalProperties: false } output: { type: "object" required: ["data"] properties: { brandName: { type: "string" } cacheTimeLimit: { type: "integer" } condition: { type: "string" } data: { type: "array" items: { type: "object" required: ["name", "average", "median", "stdDev", "pVariance"] properties: { average: { type: "number" } median: { type: "number" } name: { type: "string" } pVariance: { type: "number" } stdDev: { type: "number" } } } } modelName: { type: "string" } msg: { type: "string" } regionName: { type: "string" } } } }