Properties
| Name | Type | Description |
|---|---|---|
| IsPersisted | boolean | |
| IsRemoved | boolean | |
| Id | integer | |
| Name | string | |
| CountryCode | string | |
| ZipCode | string | |
| CultureInfoName | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Region2",
"title": "Region2",
"type": "object",
"nullable": true,
"properties": {
"IsPersisted": {
"type": "boolean"
},
"IsRemoved": {
"type": "boolean"
},
"Id": {
"type": "integer",
"format": "int32"
},
"Name": {
"type": "string"
},
"CountryCode": {
"type": "string"
},
"ZipCode": {
"type": "string"
},
"CultureInfoName": {
"type": "string"
}
}
}