{
  "openapi": "3.0.0",
  "info": {
    "title": "PSX",
    "version": "1"
  },
  "servers": [
    {
      "url": "http:\/\/127.0.0.1\/"
    }
  ],
  "paths": {
    "\/population\/popo": {
      "get": {
        "description": "Collection endpoint",
        "operationId": "PSX_Framework_App_Api_Population_CollectionPopo_doGet",
        "parameters": [
          {
            "name": "startIndex",
            "in": "query",
            "required": false,
            "schema": {
              "type": "integer"
            }
          },
          {
            "name": "count",
            "in": "query",
            "required": false,
            "schema": {
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "GET 200 Response",
            "content": {
              "application\/json": {
                "schema": {
                  "$ref": "#\/components\/schemas\/PSX_Framework_App_Api_Population_CollectionPopo_doGet_GET_200_Response"
                }
              }
            }
          }
        }
      },
      "post": {
        "description": "Collection endpoint",
        "operationId": "PSX_Framework_App_Api_Population_CollectionPopo_doPost",
        "requestBody": {
          "description": "POST Request",
          "content": {
            "application\/json": {
              "schema": {
                "$ref": "#\/components\/schemas\/PSX_Framework_App_Api_Population_CollectionPopo_doPost_POST_Request"
              }
            }
          }
        },
        "responses": {
          "201": {
            "description": "POST 201 Response",
            "content": {
              "application\/json": {
                "schema": {
                  "$ref": "#\/components\/schemas\/PSX_Framework_App_Api_Population_CollectionPopo_doPost_POST_201_Response"
                }
              }
            }
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "Collection": {
        "type": "object",
        "properties": {
          "totalResults": {
            "type": "integer"
          },
          "entry": {
            "type": "array",
            "items": {
              "$ref": "#\/components\/schemas\/Entity"
            }
          }
        }
      },
      "Entity": {
        "type": "object",
        "properties": {
          "id": {
            "type": "integer"
          },
          "place": {
            "type": "integer"
          },
          "region": {
            "type": "string"
          },
          "population": {
            "type": "integer"
          },
          "users": {
            "type": "integer"
          },
          "worldUsers": {
            "type": "number"
          },
          "datetime": {
            "format": "date-time",
            "type": "string"
          }
        }
      },
      "Message": {
        "type": "object"
      },
      "PSX_Framework_App_Api_Population_CollectionPopo_doGet_GET_200_Response": {
        "$ref": "#\/components\/schemas\/Collection"
      },
      "PSX_Framework_App_Api_Population_CollectionPopo_doPost_POST_201_Response": {
        "$ref": "#\/components\/schemas\/Message"
      },
      "PSX_Framework_App_Api_Population_CollectionPopo_doPost_POST_Request": {
        "$ref": "#\/components\/schemas\/Entity"
      }
    }
  }
}