{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amplitude/refs/heads/main/json-schema/experiment-management-api-version-list-response-schema.json", "title": "VersionListResponse", "description": "VersionListResponse schema from Amplitude Experiment Management API", "type": "object", "properties": { "versions": { "type": "array", "description": "Array of version records.", "items": { "type": "object", "properties": { "id": { "type": "string", "description": "The version record ID." }, "flagId": { "type": "string", "description": "The flag or experiment ID." }, "version": { "type": "integer", "description": "The version number." }, "createdAt": { "type": "string", "format": "date-time", "description": "The date and time the version was created." }, "createdBy": { "type": "string", "description": "The user who created this version." } } } }, "nextCursor": { "type": "string", "description": "A cursor for fetching the next page." } } }