{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ListReport", "title": "ListReport", "type": "object", "properties": { "id": { "type": "string", "example": "'Y2lzY29zcGFyazovL3VzL0JJTExJTkdfUkVQT1JULzViOGQ1MThhLThmMDAtNDUxYi1hNDA2LWVhZjQ5YjRhN2ZhOA'", "description": "A unique report ID that corresponds to a billing report." }, "billingPeriod": { "type": "string", "example": "2021-05", "description": "The year and month (`YYYY-MM`) for which the billing report was generated." }, "status": { "type": "string", "enum": [ "IN_PROGRESS", "COMPLETED", "FAILED" ], "description": "The status of the billing report.\n * `IN_PROGRESS` - Report generation is in progress.\n * `COMPLETED` - Report generation is complete.\n * `FAILED` - Report generation failed.\n" } } }