Verify Metadata and OpenAPI Specification Documents

Use the sample files and table to confirm that the generated OpenAPI document is semantically identical to the REST class it was generated from.

  • Use the OpenAPI Specification Objects and Fields table to verify that all listed fields are valid.
  • Confirm whether the path needs a parameter defined /a/b/c/{id}. HttpGet and HttpDelete typically use an Id that is taken from the URI.
  • Confirm that the generated methods are listed under the correct path.
  • If the path defines a replaceable parameter, /a/b/c/{id}, confirm that the parameter is listed in the parameters section with the correct setting for the in property.
  • If the Apex REST class fetches values from query parameters, confirm that these parameters are listed in the parameters section with correct value in the in parameter.
  • Confirm that parameters that are required have the required parameter property set to true.
  • Confirm that all parameter types are correct.
  • If an Apex REST method depends on fetching values from the request body, confirm that the shape of the request body is correct.
  • Confirm that the generated YAML includes responses in the 200-299 range.
  • Confirm that the response body properly reflects the shape of the return type from the Apex REST class.

This table lists objects and fields in the OpenAPI specification that require specific values or actions to make the specification valid for use with Apex classes that you expose as agent actions. Make sure the OpenAPI specification you generate for these Apex classes is in agreement with the descriptions in this table.

FieldDescription
OpenAPI Object
openapiSet the OpenAPI Specification version 3.0.0.
serversSet the API server definition for the API to a single ‘/services/apexrest’ URL.
pathsSet the relative paths to the individual endpoints and their operations to exactly match the path defined in the @RestResource annotation’s urlMapping parameter.
securityApex REST supports these authentication mechanisms: - Type: OAuth2 - Type: HTTP, Scheme: Bearer
Path Item Object
descriptionProvide a detailed description of the path. Supports Markdown syntax.
serversDon't include this field.
optionsDon't include this field.
headDon't include this field.
traceDon't include this field.
Operations Object
descriptionProvide a detailed description of the operation. Supports Markdown syntax.
operationIdProvide a unique identifier for the operation. Useful for referencing the operation programmatically.
parametersProvide a list of unique parameter objects applicable for this operation, as needed. These parameters override matching parameters in the Path Item Object.
requestBodyProvide a request body describing the input data for this, if needed.
responsesProvide a responses object specifying the possible responses for the operation, if needed.
callbacksDon't include this field.
deprecatedDon't include this field.
securityDon't include this field.
serversDon't include this field.
Request Body Object
descriptionProvide a brief description of the request body. Can be used for documentation purposes.
contentUse only application/json for media type. This field is a map of media types and their corresponding schema for the request body.
Parameters Object
inProvide query, header, and path parameter locations. Don’t provide cookie.
descriptionProvide a brief description of the parameter's purpose.
deprecatedDon't include this field.
explodeDon’t include this field.
allowReservedDon’t include this field.
exampleThis field isn’t required, but we recommend that you include it.
examplesThis field isn’t required, but we recommend that you include it.
contentUse only application/json for media type. This field is a map of media types and their corresponding schema for the parameter.
Response Object
descriptionProvide a short description of the response. CommonMark syntax can be used for rich text representation.
headersDon’t include this field. Headers aren't allowed in responses.
contentUse only application/json if the response has type: object, or text/plain if the response has type: string. This field is a map defining the response body.
Media Type Object
EncodingDon’t include this field.
Header ObjectDon’t use these headers: cookie, set-cookie, set-cookie2, content-length, Authorization. Don’t use allowed headers in response objects.
descriptionProvide a brief description of the header's purpose.
deprecatedDon't include this field.
explodeDon’t include this field.
allowReservedDon’t include this field.
exampleThis field isn’t required, but we recommend that you include it.
examplesThis field isn’t required, but we recommend that you include it.
contentUse only application/json for media type. This field is a map of media types and their corresponding schema for the header.
Callback ObjectDon’t use this object.
Schema ObjectInclude a properties object with the input properties that should be present. Don’t use not blocks.

These boolean fields extend the OpenAPI specification. Use these fields to define agent actions that are automatically created and made available in agents. For MuleSoft for Agentforce: Topic Center extensions, see Configure Topics.

ExtensionDescription
x-sfdc/agent/action/publishAsAgentActionRequired. Set this attribute to true to enable the operation as an action.
x-sfdc/privacy/isPiiOptional. If publishAsAgentAction is enabled, set this attribute to true to enable PII service for queries sent under that operation
x-sfdc/agent/action/isUserInputRequired if publishAsAgentAction is enabled. Set this attribute to true to surface the field to the user for further input.
x-sfdc/agent/action/isDisplayableRequired if publishAsAgentAction is enabled. Set this attribute to true for the field to be displayable to the user.

The metadata must be defined inside a schema. For example:

Don’t add agent metadata in a schema that’s defined using $ref.

ExternalServiceRegistration metadata deploys the OpenAPI document for your Apex REST class. The ExternalServiceRegistration fields are characteristic of an Apex REST service in the API catalog. The table below shows how these fields must be set:

Field NameField TypeDescription
namedCredentialstringThe field value is always null. The Apex REST service is deployed to your org.
registrationProviderstringThe name of the Apex REST class implementing the REST service.
registrationProviderTypeenum stringIndicates the type of the API specification registration. New enumeration value: ApexRest - The API spec is implemented by an Apex REST class in your org.
schemastringThe content of the OpenAPI 3.0 schema in YAML format. This field is empty if your SFDX project source behavior has been configured to decompose the ExternalServiceRegistration metadata.
schemaTypestringOpenApi3

ESR of provider type ApexRest aren't visible in the External Service Setup. From Setup, in the Quick Find box, enter API Catalog and select it. See View Apex APIs in API Catalog (Beta).

Deploying the ExternalServiceRegistration with registration provider type ApexRest doesn't co-deploy the Apex REST class implementing the service automatically. You must deploy the Apex REST class as part of your project or on its own.

In the MuleSoft for Agentforce Extension Pack (beta), the MuleSoft for Agentforce API Design Extension provides the ability to check that your document is semantically and syntactically correct in Code Builder. The MuleSoft for Agentforce Extension Pack (beta) contains these extensions:

  • MuleSoft for Agentforce API Design Extension
  • MuleSoft for Agentforce Dependencies Extension
  • MuleSoft for Agentforce Platform Extension

The Salesforce API Topic and Action Enablement and Salesforce Apex REST Best Practices governance rulesets are included in the MuleSoft for Agentforce Extension Pack (beta). Use the governance rules in the extension pack to ensure that your document is ready for agent actions and has the required metadata to generate agent actions. Use these commands.

  • MuleSoft: Run Governance Validation with all Rulesets and Rules
  • MuleSoft: Rerun non-confirmation validations on Governance Rules runs rules that have previously failed.

For details, see Validating API Specifications Against Governance Rulesets and Enabling an API Project for Topics and Agent Actions.

In the API Console, you can check endpoints and test your document by providing a deployed instance of your Apex REST implementation or by mocking up request data. For details, see Review Your Spec in the API Console and Test Your Spec Using the API Mocking Service.