{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SourceAssignmentResult", "title": "SourceAssignmentResult", "required": [ "Cursor", "SourceAssignments" ], "type": "object", "properties": { "SourceAssignments": { "type": "array", "items": { "$ref": "#/components/schemas/SourceAssignment" }, "description": "Assignments between reservation group and sources." }, "Cursor": { "type": "string", "description": "Unique identifier of the last and hence oldest source assignment returned. This can be used in `Limitation` in a subsequent request to fetch the next batch of older source assignments.", "format": "uuid" } }, "additionalProperties": false, "x-schema-id": "SourceAssignmentResult" }