Workday Reporting · Schema

ReportPrompt

Definition of a report prompt parameter that can be used for filtering report data when executing the report via the API

AnalyticsBusiness IntelligenceFinancial ReportingHr DataReporting

Properties

Name Type Description
promptName string Name of the prompt parameter to use as a query parameter in the report URL
promptType string Data type expected for the prompt value
isRequired boolean Whether the prompt must be provided when executing the report
defaultValue string Default value used when the prompt is not specified
View JSON Schema on GitHub

JSON Schema

workday-reporting-reportprompt-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ReportPrompt",
  "title": "ReportPrompt",
  "type": "object",
  "description": "Definition of a report prompt parameter that can be used for filtering report data when executing the report via the API",
  "properties": {
    "promptName": {
      "type": "string",
      "description": "Name of the prompt parameter to use as a query parameter in the report URL"
    },
    "promptType": {
      "type": "string",
      "description": "Data type expected for the prompt value"
    },
    "isRequired": {
      "type": "boolean",
      "description": "Whether the prompt must be provided when executing the report"
    },
    "defaultValue": {
      "type": "string",
      "description": "Default value used when the prompt is not specified"
    }
  }
}