Workday Studio · Schema

ServiceMetadata

Metadata about a Workday web service including its operations and supported versions.

CloudDevelopmentEnterpriseFinanceHRIDEIntegration

Properties

Name Type Description
serviceName string The name of the web service
version string The current version of the web service
wsdlUrl string The URL to the WSDL definition for the service
operations array The list of operations available in the service
View JSON Schema on GitHub

JSON Schema

workday-studio-servicemetadata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ServiceMetadata",
  "title": "ServiceMetadata",
  "type": "object",
  "description": "Metadata about a Workday web service including its operations and supported versions.",
  "properties": {
    "serviceName": {
      "type": "string",
      "description": "The name of the web service"
    },
    "version": {
      "type": "string",
      "description": "The current version of the web service"
    },
    "wsdlUrl": {
      "type": "string",
      "format": "uri",
      "description": "The URL to the WSDL definition for the service"
    },
    "operations": {
      "type": "array",
      "description": "The list of operations available in the service",
      "items": {
        "type": "object",
        "properties": {
          "operationName": {
            "type": "string",
            "description": "The name of the operation"
          },
          "description": {
            "type": "string",
            "description": "A description of the operation"
          }
        }
      }
    }
  }
}