{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "PaymentInformation",
"type": "object",
"description": "An object describing a user's payment information for a plugin, widget, or Community file.",
"properties": {
"user_id": {
"type": "string",
"description": "The ID of the user whose payment information was queried. Can be used to verify the validity of a response."
},
"resource_id": {
"type": "string",
"description": "The ID of the plugin, widget, or Community file that was queried. Can be used to verify the validity of a response."
},
"resource_type": {
"type": "string",
"description": "The type of the resource."
},
"date_of_purchase": {
"type": "string",
"description": "The UTC ISO 8601 timestamp indicating when the user purchased the resource. No value is given if the user has never purchased the resource."
}
}
}