db620d33df
CodeQL / Analyze (csharp) (push) Waiting to run
CodeQL / Analyze (python) (push) Waiting to run
dotnet-build-and-test / dotnet-test-functions (push) Has been cancelled
dotnet-build-and-test / paths-filter (push) Has been cancelled
dotnet-build-and-test / dotnet-build (Debug, windows-latest, net9.0) (push) Has been cancelled
dotnet-build-and-test / dotnet-build (Release, ubuntu-latest, net10.0) (push) Has been cancelled
dotnet-build-and-test / dotnet-build (Release, ubuntu-latest, net8.0) (push) Has been cancelled
dotnet-build-and-test / dotnet-build (Release, windows-latest, net472) (push) Has been cancelled
dotnet-build-and-test / dotnet-test (Release, integration, true, ubuntu-latest, net10.0) (push) Has been cancelled
dotnet-build-and-test / dotnet-test (Release, integration, true, windows-latest, net472) (push) Has been cancelled
dotnet-build-and-test / dotnet-foundry-hosted-it (push) Has been cancelled
dotnet-build-and-test / dotnet-build-and-test-check (push) Has been cancelled
dotnet-build-and-test / Integration Test Report (push) Has been cancelled
141 lines
4.3 KiB
JSON
141 lines
4.3 KiB
JSON
{
|
|
"openapi": "3.0.1",
|
|
"info": {
|
|
"title": "REST Countries API",
|
|
"description": "Get information about countries of the world",
|
|
"version": "3.1"
|
|
},
|
|
"servers": [
|
|
{
|
|
"url": "https://restcountries.com/v3.1"
|
|
}
|
|
],
|
|
"paths": {
|
|
"/currency/{currency}": {
|
|
"get": {
|
|
"operationId": "getCountriesByCurrency",
|
|
"summary": "Get countries by currency",
|
|
"description": "Search for countries by currency code",
|
|
"parameters": [
|
|
{
|
|
"name": "currency",
|
|
"in": "path",
|
|
"required": true,
|
|
"schema": {
|
|
"type": "string"
|
|
},
|
|
"description": "Currency code (e.g., THB, USD, EUR)"
|
|
}
|
|
],
|
|
"responses": {
|
|
"200": {
|
|
"description": "Successful response",
|
|
"content": {
|
|
"application/json": {
|
|
"schema": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object",
|
|
"properties": {
|
|
"name": {
|
|
"type": "object",
|
|
"properties": {
|
|
"common": {"type": "string"},
|
|
"official": {"type": "string"}
|
|
}
|
|
},
|
|
"population": {"type": "integer"},
|
|
"region": {"type": "string"},
|
|
"subregion": {"type": "string"},
|
|
"capital": {
|
|
"type": "array",
|
|
"items": {"type": "string"}
|
|
},
|
|
"currencies": {
|
|
"type": "object",
|
|
"additionalProperties": {
|
|
"type": "object",
|
|
"properties": {
|
|
"name": {"type": "string"},
|
|
"symbol": {"type": "string"}
|
|
}
|
|
}
|
|
},
|
|
"languages": {
|
|
"type": "object",
|
|
"additionalProperties": {"type": "string"}
|
|
},
|
|
"latlng": {
|
|
"type": "array",
|
|
"items": {"type": "number"}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"/name/{name}": {
|
|
"get": {
|
|
"operationId": "getCountryByName",
|
|
"summary": "Get country by name",
|
|
"description": "Search for countries by name",
|
|
"parameters": [
|
|
{
|
|
"name": "name",
|
|
"in": "path",
|
|
"required": true,
|
|
"schema": {
|
|
"type": "string"
|
|
},
|
|
"description": "Country name"
|
|
}
|
|
],
|
|
"responses": {
|
|
"200": {
|
|
"description": "Successful response",
|
|
"content": {
|
|
"application/json": {
|
|
"schema": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object",
|
|
"properties": {
|
|
"name": {
|
|
"type": "object",
|
|
"properties": {
|
|
"common": {"type": "string"},
|
|
"official": {"type": "string"}
|
|
}
|
|
},
|
|
"population": {"type": "integer"},
|
|
"region": {"type": "string"},
|
|
"subregion": {"type": "string"},
|
|
"capital": {
|
|
"type": "array",
|
|
"items": {"type": "string"}
|
|
},
|
|
"currencies": {
|
|
"type": "object",
|
|
"additionalProperties": {
|
|
"type": "object",
|
|
"properties": {
|
|
"name": {"type": "string"},
|
|
"symbol": {"type": "string"}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |