{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/TermsOfServices", "title": "Terms of services", "type": "object", "x-box-resource-id": "terms_of_services", "x-box-tag": "terms_of_services", "description": "A list of terms of services", "properties": { "total_count": { "description": "The total number of objects.", "example": 2, "type": "integer", "format": "int64" }, "entries": { "type": "array", "description": "A list of terms of service objects", "items": { "$ref": "#/components/schemas/TermsOfService" } } } }