BillingPolicyListResponse

Response containing a list of billing policies.

Business ApplicationsCopilot StudioDataverseLow-CodeMicrosoftNo-CodePower PagesPower Platform

Properties

Name Type Description
value array Array of billing policy resources.
@odata.nextLink stringnull URL to retrieve the next page of results.
View JSON Schema on GitHub

JSON Schema

power-platform-billingpolicylistresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BillingPolicyListResponse",
  "title": "BillingPolicyListResponse",
  "type": "object",
  "description": "Response containing a list of billing policies.",
  "properties": {
    "value": {
      "type": "array",
      "description": "Array of billing policy resources.",
      "items": {
        "$ref": "#/components/schemas/BillingPolicy"
      },
      "example": []
    },
    "@odata.nextLink": {
      "type": [
        "string",
        "null"
      ],
      "format": "uri",
      "description": "URL to retrieve the next page of results.",
      "example": "https://www.example.com"
    }
  }
}