Raw schema
{
"type": "object",
"properties": {
"sido": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "์๋. '์์ธ'์ฒ๋ผ ์ค์ฌ ์จ๋ ๋๊ณ '์์ธํน๋ณ์'๋ ๋๋ค.",
"title": "Sido"
},
"sigungu": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "์๊ตฐ๊ตฌ (์: ๊ฐ๋จ๊ตฌ, ์ฑ๋จ์)",
"title": "Sigungu"
},
"usage_name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "๋ฌผ๊ฑด ์ข
๋ฅ (์ํํธ, ์คํผ์คํ
, ๋ค์ธ๋, ๋จ๋
์ฃผํ, ์๊ฐ, ํ ์ง ๋ฑ)",
"title": "Usage Name"
},
"min_price_10k": {
"anyOf": [
{
"minimum": 0,
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"description": "์ต์ ๊ฐ์ ๊ฐ, **๋ง์** ๋จ์ (5์ต์ด๋ฉด 50000)",
"title": "Min Price 10K"
},
"max_price_10k": {
"anyOf": [
{
"minimum": 0,
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"description": "์ต๋ ๊ฐ์ ๊ฐ, **๋ง์** ๋จ์",
"title": "Max Price 10K"
},
"min_bid_count": {
"anyOf": [
{
"maximum": 100,
"minimum": 0,
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"description": "์ต์ ์ ์ฐฐ ํ์. ์ ์ฐฐ์ด ์์ผ์๋ก ์ต์ ์
์ฐฐ๊ฐ๊ฐ ๋ด๋ ค๊ฐ๋ค.",
"title": "Min Bid Count"
},
"sort": {
"default": "date_desc",
"description": "์ ๋ ฌ ๊ธฐ์ค",
"enum": [
"date_desc",
"date_asc",
"price_asc",
"price_desc",
"bid_count_desc"
],
"title": "Sort",
"type": "string"
},
"limit": {
"default": 20,
"description": "๋ฐํ ๊ฐ์ (์ต๋ 50)",
"maximum": 50,
"minimum": 1,
"title": "Limit",
"type": "integer"
},
"offset": {
"default": 0,
"description": "ํ์ด์ง ์คํ์
. has_more๊ฐ true๋ฉด next_offset์ผ๋ก ๋ค์ ํธ์ถํ๋ผ.",
"minimum": 0,
"title": "Offset",
"type": "integer"
}
},
"additionalProperties": false,
"title": "realty_search_auctionsArguments"
}