Azure DevTest Labs · Schema

ArtifactSourceList

The response of a list operation.

AzureDevelopmentInfrastructureLabsTestingVirtual Machines

Properties

Name Type Description
nextLink string Link for next set of results.
value array Results of the list operation.
View JSON Schema on GitHub

JSON Schema

azure-test-labs-artifact-source-list-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/azure-test-labs/refs/heads/main/json-schema/azure-test-labs-artifact-source-list-schema.json",
  "title": "ArtifactSourceList",
  "description": "The response of a list operation.",
  "type": "object",
  "properties": {
    "nextLink": {
      "description": "Link for next set of results.",
      "type": "string"
    },
    "value": {
      "description": "Results of the list operation.",
      "items": {
        "$ref": "#/definitions/ArtifactSource"
      },
      "type": "array"
    }
  }
}