Microsoft Azure · Schema

StoredProcedureListResult

List of Cosmos DB stored procedures.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
_rid string
StoredProcedures array List of stored procedures.
_count integer
View JSON Schema on GitHub

JSON Schema

azure-cosmos-db-stored-procedure-list-result-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "StoredProcedureListResult",
  "type": "object",
  "description": "List of Cosmos DB stored procedures.",
  "properties": {
    "_rid": {
      "type": "string"
    },
    "StoredProcedures": {
      "type": "array",
      "description": "List of stored procedures."
    },
    "_count": {
      "type": "integer"
    }
  }
}