{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ServicePrincipalCollectionResponse", "title": "ServicePrincipalCollectionResponse", "type": "object", "description": "Paged collection of service principal objects", "properties": { "@odata.context": { "type": "string", "example": "example_value" }, "@odata.count": { "type": "integer", "example": 10 }, "@odata.nextLink": { "type": "string", "format": "uri", "example": "https://www.example.com" }, "value": { "type": "array", "items": { "$ref": "#/components/schemas/ServicePrincipal" }, "example": [] } } }