Collection of person objects
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PersonCollectionResponse", "title": "PersonCollectionResponse", "type": "object", "description": "Collection of person objects", "properties": { "@odata.context": { "type": "string" }, "@odata.nextLink": { "type": "string", "format": "uri" }, "value": { "type": "array", "items": { "$ref": "#/components/schemas/Person" } } } }