{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/RegistrySettlementListing",
"title": "RegistrySettlementListing",
"type": "object",
"properties": {
"id": {
"type": "integer",
"description": "The id of the RegistrySettlement.",
"readOnly": true,
"writeOnly": false
},
"created": {
"type": "string",
"description": "The timestamp of the RegistrySettlement's creation.",
"readOnly": true,
"writeOnly": false
},
"updated": {
"type": "string",
"description": "The timestamp of the RegistrySettlement's last update.",
"readOnly": true,
"writeOnly": false
},
"settlement_time": {
"type": "string",
"description": "The timestamp of the Registry's settlement.",
"readOnly": true,
"writeOnly": false
},
"total_amount_spent": {
"type": "object",
"description": "The total amount spent for the RegistrySettlement.",
"readOnly": true,
"writeOnly": false,
"$ref": "#/components/schemas/Amount"
},
"number_of_entries": {
"type": "integer",
"description": "The number of RegistryEntry's associated with this RegistrySettlement.",
"readOnly": true,
"writeOnly": false
},
"settled_by_alias": {
"type": "object",
"description": "The membership of the user that settled the Registry.",
"readOnly": true,
"writeOnly": false,
"$ref": "#/components/schemas/RegistryMembership"
},
"membership_settled": {
"type": "object",
"description": "The membership of the user that has settled the registry.",
"readOnly": true,
"writeOnly": false,
"$ref": "#/components/schemas/RegistryMembership"
},
"items": {
"type": "array",
"description": "List of RegistrySettlementItems",
"readOnly": true,
"writeOnly": false,
"items": {
"$ref": "#/components/schemas/RegistrySettlementItem"
}
}
}
}