{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PropertyPUT", "title": "PropertyPUT", "type": "object", "properties": { "id": { "type": "integer", "description": "An internal identifier used by other operations.", "example": 1 }, "code": { "type": "string", "description": "The unique string programmatically references this unique tax property by the tax provider. Merchants should liaise with their tax provider to explore supported values and functions.", "example": "A-123456789" }, "display_name": { "type": "string", "description": "The human-readable name for this property. This string will be displayed on the Products screen as a field label.", "example": "Example Tax Property 1" }, "description": { "type": "string", "description": "Optional. Additional detail about this tax property may help guide merchants. This string will be displayed on the Products screen as a tooltip associated with the relevant field.", "example": "Food Industry" } }, "required": [ "id" ] }