A Cosmos DB stored procedure.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "StoredProcedure", "type": "object", "description": "A Cosmos DB stored procedure.", "properties": { "id": { "type": "string", "description": "The unique name of the stored procedure." }, "body": { "type": "string", "description": "The body of the stored procedure (JavaScript function)." }, "_rid": { "type": "string" }, "_ts": { "type": "integer" }, "_self": { "type": "string" }, "_etag": { "type": "string" } } }