{
    "openapi": "3.0.0",
    "info": {
        "title": "lent.az List Api",
        "description": "admin panel for lent.az",
        "version": "1.0"
    },
    "paths": {
        "/api/authors": {
            "get": {
                "tags": [
                    "Authors"
                ],
                "summary": "Show Authors",
                "operationId": "919e4ba0c3c46cf84eb1c8703f4dafc2",
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "type": "array",
                                            "items": {
                                                "properties": {
                                                    "id": {
                                                        "type": "number",
                                                        "example": "1"
                                                    },
                                                    "name": {
                                                        "type": "string",
                                                        "example": "name"
                                                    },
                                                    "surname": {
                                                        "type": "string",
                                                        "example": "surname"
                                                    },
                                                    "email": {
                                                        "type": "string",
                                                        "example": "email@mail.com"
                                                    },
                                                    "file": {
                                                        "type": "string",
                                                        "example": "asdfasddgsdgfsg1629107655611a35c7608d2611a35c7608d5.mp3"
                                                    },
                                                    "status": {
                                                        "type": "number",
                                                        "example": 0
                                                    }
                                                },
                                                "type": "object"
                                            }
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            },
            "post": {
                "tags": [
                    "Authors"
                ],
                "summary": "Store Authors",
                "operationId": "08b208d54a384427a1d1bb57811ea6ea",
                "requestBody": {
                    "content": {
                        "application/json": {
                            "schema": {
                                "properties": {
                                    "": {
                                        "properties": {
                                            "name": {
                                                "type": "string"
                                            },
                                            "surname": {
                                                "type": "string"
                                            },
                                            "email": {
                                                "type": "string"
                                            },
                                            "user_id": {
                                                "type": "number"
                                            },
                                            "status": {
                                                "type": "number"
                                            },
                                            "file": {
                                                "description": "file to upload",
                                                "type": "file"
                                            }
                                        },
                                        "type": "object"
                                    }
                                },
                                "type": "object",
                                "example": {
                                    "name": "author name",
                                    "surname": "author surname",
                                    "email": "author email",
                                    "user_id": 5,
                                    "status": 1
                                }
                            }
                        }
                    }
                },
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "id": {
                                            "type": "number",
                                            "example": 1
                                        },
                                        "name": {
                                            "type": "string",
                                            "example": "name"
                                        },
                                        "surname": {
                                            "type": "string",
                                            "example": "surname"
                                        },
                                        "email": {
                                            "type": "string",
                                            "example": "email"
                                        },
                                        "photo": {
                                            "type": "string",
                                            "example": "photo"
                                        },
                                        "user_id": {
                                            "type": "number",
                                            "example": 5
                                        },
                                        "status": {
                                            "type": "number",
                                            "example": 1
                                        },
                                        "updated_at": {
                                            "type": "string",
                                            "example": "2021-12-11T09:25:53.000000Z"
                                        },
                                        "created_at": {
                                            "type": "string",
                                            "example": "2021-12-11T09:25:53.000000Z"
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    },
                    "400": {
                        "description": "invalid",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "success": {
                                            "type": "string",
                                            "example": false
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/api/authors/create": {
            "get": {
                "tags": [
                    "Authors"
                ],
                "summary": "Create Authors",
                "operationId": "0f2ebd20baf7c0f1aeb1d779cb56c8b7",
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "type": "array",
                                            "items": {
                                                "properties": {
                                                    "id": {
                                                        "type": "number",
                                                        "example": "1"
                                                    },
                                                    "name": {
                                                        "type": "string",
                                                        "example": "name"
                                                    },
                                                    "surname": {
                                                        "type": "string",
                                                        "example": "surname"
                                                    }
                                                },
                                                "type": "object"
                                            }
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/api/authors/{id}/edit": {
            "get": {
                "tags": [
                    "Authors"
                ],
                "summary": "Show one Author",
                "operationId": "372c8a7fa7451f9451dd83838bfd7ede",
                "parameters": [
                    {
                        "name": "id",
                        "in": "path",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "type": "array",
                                            "items": {
                                                "properties": {
                                                    "id": {
                                                        "type": "number",
                                                        "example": "1"
                                                    },
                                                    "name": {
                                                        "type": "string",
                                                        "example": "Author name"
                                                    },
                                                    "surname": {
                                                        "type": "string",
                                                        "example": "Author surname"
                                                    },
                                                    "email": {
                                                        "type": "string",
                                                        "example": "Author email"
                                                    },
                                                    "user_id": {
                                                        "type": "number",
                                                        "example": 6
                                                    },
                                                    "photo": {
                                                        "type": "string",
                                                        "example": "asdfasddgsdgfsg1629107655611a35c7608d2611a35c7608d5.jpg"
                                                    },
                                                    "status": {
                                                        "type": "number",
                                                        "example": 0
                                                    }
                                                },
                                                "type": "object"
                                            }
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/api/authors/{id}": {
            "put": {
                "tags": [
                    "Authors"
                ],
                "summary": "Store Authors",
                "operationId": "4da087ab786f4e4eb82899daae3e6018",
                "parameters": [
                    {
                        "name": "id",
                        "in": "path",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "requestBody": {
                    "content": {
                        "application/json": {
                            "schema": {
                                "properties": {
                                    "": {
                                        "properties": {
                                            "name": {
                                                "type": "string"
                                            },
                                            "surname": {
                                                "type": "string"
                                            },
                                            "email": {
                                                "type": "string"
                                            },
                                            "user_id": {
                                                "type": "number"
                                            },
                                            "status": {
                                                "type": "number"
                                            },
                                            "file": {
                                                "description": "file to upload",
                                                "type": "file"
                                            }
                                        },
                                        "type": "object"
                                    }
                                },
                                "type": "object",
                                "example": {
                                    "name": "author name",
                                    "surname": "author surname",
                                    "email": "author email",
                                    "user_id": 5,
                                    "status": 1
                                }
                            }
                        }
                    }
                },
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "id": {
                                            "type": "number",
                                            "example": 1
                                        },
                                        "name": {
                                            "type": "string",
                                            "example": "name"
                                        },
                                        "surname": {
                                            "type": "string",
                                            "example": "surname"
                                        },
                                        "email": {
                                            "type": "string",
                                            "example": "email"
                                        },
                                        "photo": {
                                            "type": "string",
                                            "example": "photo"
                                        },
                                        "user_id": {
                                            "type": "number",
                                            "example": 5
                                        },
                                        "status": {
                                            "type": "number",
                                            "example": 1
                                        },
                                        "updated_at": {
                                            "type": "string",
                                            "example": "2021-12-11T09:25:53.000000Z"
                                        },
                                        "created_at": {
                                            "type": "string",
                                            "example": "2021-12-11T09:25:53.000000Z"
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    },
                    "400": {
                        "description": "invalid",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "success": {
                                            "type": "string",
                                            "example": false
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            },
            "delete": {
                "tags": [
                    "Authors"
                ],
                "summary": "Delete Author",
                "operationId": "a749191edbb297d027d82b044543d12a",
                "parameters": [
                    {
                        "name": "id",
                        "in": "path",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "success": {
                                            "type": "string",
                                            "example": "true"
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/api/categories": {
            "get": {
                "tags": [
                    "Categories"
                ],
                "summary": "Show Categories",
                "operationId": "674a1af15931e260d2673bd822b574df",
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "type": "array",
                                            "items": {
                                                "properties": {
                                                    "id": {
                                                        "type": "number",
                                                        "example": "1"
                                                    },
                                                    "name": {
                                                        "type": "string",
                                                        "example": "name"
                                                    },
                                                    "description": {
                                                        "type": "string",
                                                        "example": "description"
                                                    },
                                                    "keywords": {
                                                        "type": "string",
                                                        "example": "keywords"
                                                    },
                                                    "status": {
                                                        "type": "number",
                                                        "example": 0
                                                    },
                                                    "sub_categories": {
                                                        "type": "array",
                                                        "items": {
                                                            "properties": {
                                                                "id": {
                                                                    "type": "number",
                                                                    "example": 26
                                                                },
                                                                "name": {
                                                                    "type": "string",
                                                                    "example": "sub category name"
                                                                }
                                                            },
                                                            "type": "object"
                                                        }
                                                    }
                                                },
                                                "type": "object"
                                            }
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            },
            "post": {
                "tags": [
                    "Categories"
                ],
                "summary": "Store Categories",
                "operationId": "1a5a7c37faba9004de75a976bb43e7da",
                "requestBody": {
                    "content": {
                        "application/json": {
                            "schema": {
                                "properties": {
                                    "": {
                                        "properties": {
                                            "name": {
                                                "type": "string",
                                                "example": "category name"
                                            },
                                            "description": {
                                                "type": "string",
                                                "example": "category description"
                                            },
                                            "keywords": {
                                                "type": "string",
                                                "example": "category keywords"
                                            },
                                            "s_id": {
                                                "type": "number",
                                                "example": 0
                                            },
                                            "status": {
                                                "type": "number",
                                                "example": 1
                                            }
                                        },
                                        "type": "object"
                                    }
                                },
                                "type": "object"
                            }
                        }
                    }
                },
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "success": {
                                            "type": "string",
                                            "example": true
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    },
                    "400": {
                        "description": "invalid",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "success": {
                                            "type": "string",
                                            "example": false
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/api/categories/create": {
            "get": {
                "tags": [
                    "Categories"
                ],
                "summary": "Create Categories",
                "operationId": "ba5a85d989c4fe3525b9e917edf56539",
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "type": "array",
                                            "items": {
                                                "properties": {
                                                    "id": {
                                                        "type": "number",
                                                        "example": "1"
                                                    },
                                                    "name": {
                                                        "type": "string",
                                                        "example": "name"
                                                    }
                                                },
                                                "type": "object"
                                            }
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/api/categories/{id}/edit": {
            "get": {
                "tags": [
                    "Categories"
                ],
                "summary": "Show one Category",
                "operationId": "821325e978dd10616e487a2873053249",
                "parameters": [
                    {
                        "name": "id",
                        "in": "path",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "type": "array",
                                            "items": {
                                                "properties": {
                                                    "id": {
                                                        "type": "number",
                                                        "example": "1"
                                                    },
                                                    "name": {
                                                        "type": "string",
                                                        "example": "Category name"
                                                    },
                                                    "description": {
                                                        "type": "string",
                                                        "example": "Category description"
                                                    },
                                                    "keywords": {
                                                        "type": "string",
                                                        "example": "Category keywords"
                                                    },
                                                    "status": {
                                                        "type": "number",
                                                        "example": 1
                                                    },
                                                    "subCategories": {
                                                        "type": "array",
                                                        "items": {
                                                            "properties": {
                                                                "id": {
                                                                    "type": "number",
                                                                    "example": 26
                                                                },
                                                                "name": {
                                                                    "type": "string",
                                                                    "example": "role name"
                                                                }
                                                            },
                                                            "type": "object"
                                                        }
                                                    }
                                                },
                                                "type": "object"
                                            }
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/api/categories/{id}": {
            "put": {
                "tags": [
                    "Categories"
                ],
                "summary": "Store Category",
                "operationId": "06ff4364ecda26f557bf29abf6e1d0b8",
                "parameters": [
                    {
                        "name": "id",
                        "in": "path",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "requestBody": {
                    "content": {
                        "application/json": {
                            "schema": {
                                "properties": {
                                    "": {
                                        "properties": {
                                            "name": {
                                                "type": "string",
                                                "example": "Category name"
                                            },
                                            "description": {
                                                "type": "string",
                                                "example": "Category description"
                                            },
                                            "keywords": {
                                                "type": "string",
                                                "example": "Category keywords"
                                            },
                                            "s_id": {
                                                "type": "number",
                                                "example": 0
                                            },
                                            "status": {
                                                "type": "number",
                                                "example": 1
                                            }
                                        },
                                        "type": "object"
                                    }
                                },
                                "type": "object"
                            }
                        }
                    }
                },
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "id": {
                                            "type": "number",
                                            "example": 1
                                        },
                                        "name": {
                                            "type": "string",
                                            "example": "name"
                                        },
                                        "url": {
                                            "type": "string",
                                            "example": "url"
                                        },
                                        "s_id": {
                                            "type": "number",
                                            "example": 0
                                        },
                                        "description": {
                                            "type": "string",
                                            "example": "description"
                                        },
                                        "keywords": {
                                            "type": "string",
                                            "example": "keywords"
                                        },
                                        "changefreq": {
                                            "type": "string",
                                            "example": "changefreq"
                                        },
                                        "priority": {
                                            "type": "string",
                                            "example": "priority"
                                        },
                                        "status": {
                                            "type": "number",
                                            "example": 1
                                        },
                                        "updated_at": {
                                            "type": "string",
                                            "example": "2021-12-11T09:25:53.000000Z"
                                        },
                                        "created_at": {
                                            "type": "string",
                                            "example": "2021-12-11T09:25:53.000000Z"
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    },
                    "400": {
                        "description": "invalid",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "success": {
                                            "type": "string",
                                            "example": false
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            },
            "delete": {
                "tags": [
                    "Categories"
                ],
                "summary": "Delete category",
                "operationId": "fdd91e5e2ebb2e853750e08334954e4a",
                "parameters": [
                    {
                        "name": "id",
                        "in": "path",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "success": {
                                            "type": "string",
                                            "example": "true"
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/api/category-links": {
            "get": {
                "tags": [
                    "Category Links"
                ],
                "summary": "Show Category Links",
                "operationId": "cc90226b12e8f6be19662cf2658f7ed5",
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "type": "array",
                                            "items": {
                                                "properties": {
                                                    "id": {
                                                        "type": "number",
                                                        "example": "1"
                                                    },
                                                    "category_id": {
                                                        "type": "number",
                                                        "example": 1
                                                    },
                                                    "related_id": {
                                                        "type": "number",
                                                        "example": 1
                                                    },
                                                    "status": {
                                                        "type": "number",
                                                        "example": 1
                                                    }
                                                },
                                                "type": "object"
                                            }
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            },
            "post": {
                "tags": [
                    "Category Links"
                ],
                "summary": "Store Category Links",
                "operationId": "6c5e819de3acd96a2d96089c1ed33acf",
                "requestBody": {
                    "content": {
                        "application/json": {
                            "schema": {
                                "properties": {
                                    "": {
                                        "properties": {
                                            "category_id": {
                                                "type": "string",
                                                "example": 1
                                            },
                                            "related_id": {
                                                "type": "string",
                                                "example": 1
                                            },
                                            "status": {
                                                "type": "string",
                                                "example": 1
                                            }
                                        },
                                        "type": "object"
                                    }
                                },
                                "type": "object"
                            }
                        }
                    }
                },
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "success": {
                                            "type": "string",
                                            "example": true
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    },
                    "400": {
                        "description": "invalid",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "success": {
                                            "type": "string",
                                            "example": false
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/api/category-links/create": {
            "get": {
                "tags": [
                    "Category Links"
                ],
                "summary": "Create Category Links",
                "operationId": "4f23e39bada57e9759930a735e6ad1cf",
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "type": "array",
                                            "items": {
                                                "properties": {
                                                    "id": {
                                                        "type": "number",
                                                        "example": "1"
                                                    },
                                                    "name": {
                                                        "type": "string",
                                                        "example": "name"
                                                    }
                                                },
                                                "type": "object"
                                            }
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/api/category-links/{id}/edit": {
            "get": {
                "tags": [
                    "Category Links"
                ],
                "summary": "Show one Category Link",
                "operationId": "868618c17282c433c4438a73ed11f0e4",
                "parameters": [
                    {
                        "name": "id",
                        "in": "path",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "type": "array",
                                            "items": {
                                                "properties": {
                                                    "id": {
                                                        "type": "number",
                                                        "example": "1"
                                                    },
                                                    "category_id": {
                                                        "type": "number",
                                                        "example": 1
                                                    },
                                                    "related_id": {
                                                        "type": "number",
                                                        "example": 1
                                                    },
                                                    "status": {
                                                        "type": "number",
                                                        "example": 0
                                                    }
                                                },
                                                "type": "object"
                                            }
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/api/category-links/{id}": {
            "put": {
                "tags": [
                    "Category Links"
                ],
                "summary": "Store Category Link",
                "operationId": "f11f51098de96f39d34c32a24f241e08",
                "parameters": [
                    {
                        "name": "id",
                        "in": "path",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "requestBody": {
                    "content": {
                        "application/json": {
                            "schema": {
                                "properties": {
                                    "category_id": {
                                        "type": "string",
                                        "example": 1
                                    },
                                    "related_id": {
                                        "type": "string",
                                        "example": 1
                                    },
                                    "status": {
                                        "type": "string",
                                        "example": 1
                                    }
                                },
                                "type": "object"
                            }
                        }
                    }
                },
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "id": {
                                            "type": "number",
                                            "example": 1
                                        },
                                        "category_id": {
                                            "type": "number",
                                            "example": 1
                                        },
                                        "related_id": {
                                            "type": "number",
                                            "example": 1
                                        },
                                        "half": {
                                            "type": "number",
                                            "example": 1
                                        },
                                        "status": {
                                            "type": "number",
                                            "example": 1
                                        },
                                        "is_deleted": {
                                            "type": "number",
                                            "example": 0
                                        },
                                        "updated_at": {
                                            "type": "string",
                                            "example": "2021-12-11T09:25:53.000000Z"
                                        },
                                        "created_at": {
                                            "type": "string",
                                            "example": "2021-12-11T09:25:53.000000Z"
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    },
                    "400": {
                        "description": "invalid",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "success": {
                                            "type": "string",
                                            "example": false
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            },
            "delete": {
                "tags": [
                    "Category Links"
                ],
                "summary": "Delete Category Link",
                "operationId": "228f2f26cf5ca4b5482eafabe36857f6",
                "parameters": [
                    {
                        "name": "id",
                        "in": "path",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "success": {
                                            "type": "string",
                                            "example": "true"
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/api/category-links-status/{id}": {
            "post": {
                "tags": [
                    "Category Links"
                ],
                "summary": "Status on off Category Link",
                "operationId": "df32124198de7e53c6b0b4cab36cdf3d",
                "parameters": [
                    {
                        "name": "id",
                        "in": "path",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "requestBody": {
                    "content": {
                        "application/json": {
                            "schema": {
                                "properties": {
                                    "status": {
                                        "type": "number",
                                        "example": 1
                                    }
                                },
                                "type": "object"
                            }
                        }
                    }
                },
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "success": {
                                            "type": "string",
                                            "example": "true"
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/api/contacts": {
            "get": {
                "tags": [
                    "Contact"
                ],
                "summary": "Contact",
                "operationId": "53329d242c1c6ca314a779679a6b5527",
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "type": "array",
                                            "items": {
                                                "properties": {
                                                    "id": {
                                                        "type": "number",
                                                        "example": "1"
                                                    },
                                                    "username": {
                                                        "type": "string",
                                                        "example": "username"
                                                    },
                                                    "email": {
                                                        "type": "string",
                                                        "example": "email@mail.com"
                                                    },
                                                    "content": {
                                                        "type": "string",
                                                        "example": "content"
                                                    },
                                                    "status": {
                                                        "type": "number",
                                                        "example": 0
                                                    }
                                                },
                                                "type": "object"
                                            }
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/api/contacts/{id}": {
            "get": {
                "tags": [
                    "Contact"
                ],
                "summary": "Show one Contact",
                "operationId": "12778813d71d47bc915f24ffd02d486c",
                "parameters": [
                    {
                        "name": "id",
                        "in": "path",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "type": "array",
                                            "items": {
                                                "properties": {
                                                    "id": {
                                                        "type": "number",
                                                        "example": "1"
                                                    },
                                                    "username": {
                                                        "type": "string",
                                                        "example": "username"
                                                    },
                                                    "email": {
                                                        "type": "string",
                                                        "example": "email@mail.com"
                                                    },
                                                    "content": {
                                                        "type": "string",
                                                        "example": "content"
                                                    },
                                                    "status": {
                                                        "type": "number",
                                                        "example": 0
                                                    }
                                                },
                                                "type": "object"
                                            }
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            },
            "delete": {
                "tags": [
                    "Authors"
                ],
                "summary": "Delete Contact",
                "operationId": "b5442f18aa5cbb97e85ba2bbb6f0913f",
                "parameters": [
                    {
                        "name": "id",
                        "in": "path",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "success": {
                                            "type": "string",
                                            "example": "true"
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/api/horoscopes": {
            "get": {
                "tags": [
                    "Horoscope"
                ],
                "summary": "Show Horoscopes",
                "operationId": "ae28847e2588e036548d76b9670f0bcb",
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "type": "array",
                                            "items": {
                                                "properties": {
                                                    "id": {
                                                        "type": "number",
                                                        "example": "1"
                                                    },
                                                    "datetime": {
                                                        "type": "string",
                                                        "example": "2020-11-27 11:17:00"
                                                    },
                                                    "status": {
                                                        "type": "number",
                                                        "example": 0
                                                    }
                                                },
                                                "type": "object"
                                            }
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            },
            "post": {
                "tags": [
                    "Horoscope"
                ],
                "summary": "Store Horoscope",
                "operationId": "6a126e196d33e0a73272452b04be711a",
                "requestBody": {
                    "content": {
                        "application/json": {
                            "schema": {
                                "properties": {
                                    "": {
                                        "properties": {
                                            "content": {
                                                "type": "string",
                                                "example": "horoscope content"
                                            },
                                            "type": {
                                                "type": "number",
                                                "example": 1
                                            },
                                            "horoscope_id": {
                                                "type": "number",
                                                "example": 1
                                            },
                                            "date": {
                                                "type": "string",
                                                "example": "2022-05-25"
                                            },
                                            "time": {
                                                "type": "string",
                                                "example": "17:16"
                                            },
                                            "status": {
                                                "type": "number",
                                                "example": 1
                                            }
                                        },
                                        "type": "object"
                                    }
                                },
                                "type": "object"
                            }
                        }
                    }
                },
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "id": {
                                            "type": "number",
                                            "example": 1
                                        },
                                        "content": {
                                            "type": "string",
                                            "example": "content"
                                        },
                                        "type": {
                                            "type": "number",
                                            "example": 1
                                        },
                                        "horoscope_id": {
                                            "type": "number",
                                            "example": 1
                                        },
                                        "date": {
                                            "type": "string",
                                            "example": "2022-05-24"
                                        },
                                        "time": {
                                            "type": "string",
                                            "example": "17:16"
                                        },
                                        "status": {
                                            "type": "number",
                                            "example": 1
                                        },
                                        "datetime": {
                                            "type": "string",
                                            "example": "2022-05-24 17:16"
                                        },
                                        "type_date": {
                                            "type": "number",
                                            "example": 2
                                        },
                                        "user_id": {
                                            "type": "number",
                                            "example": 2
                                        },
                                        "date_at": {
                                            "type": "string",
                                            "example": "24 may 2022"
                                        },
                                        "updated_at": {
                                            "type": "string",
                                            "example": "2021-12-11T09:25:53.000000Z"
                                        },
                                        "created_at": {
                                            "type": "string",
                                            "example": "2021-12-11T09:25:53.000000Z"
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    },
                    "400": {
                        "description": "invalid",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "success": {
                                            "type": "string",
                                            "example": false
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/api/horoscopes/create": {
            "get": {
                "tags": [
                    "Horoscope"
                ],
                "summary": "Create Horoscope",
                "operationId": "f243ef814a0de7b9eb744facb3a82443",
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "type": "array",
                                            "items": {
                                                "properties": {
                                                    "id": {
                                                        "type": "number",
                                                        "example": "1"
                                                    },
                                                    "name": {
                                                        "type": "string",
                                                        "example": "name"
                                                    }
                                                },
                                                "type": "object"
                                            }
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/api/horoscopes/{id}/edit": {
            "get": {
                "tags": [
                    "Horoscope"
                ],
                "summary": "Show one Horoscope",
                "operationId": "3a74893990bca2ff119e1777790103e6",
                "parameters": [
                    {
                        "name": "id",
                        "in": "path",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "type": "array",
                                            "items": {
                                                "properties": {
                                                    "id": {
                                                        "type": "number",
                                                        "example": "1"
                                                    },
                                                    "content": {
                                                        "type": "string",
                                                        "example": "horoscope content"
                                                    },
                                                    "type": {
                                                        "type": "number",
                                                        "example": 1
                                                    },
                                                    "horoscope_id": {
                                                        "type": "number",
                                                        "example": 1
                                                    },
                                                    "date": {
                                                        "type": "string",
                                                        "example": "2022-05-25"
                                                    },
                                                    "time": {
                                                        "type": "string",
                                                        "example": "17:16"
                                                    },
                                                    "status": {
                                                        "type": "number",
                                                        "example": 1
                                                    }
                                                },
                                                "type": "object"
                                            }
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/api/horoscopes/{id}": {
            "put": {
                "tags": [
                    "Horoscope"
                ],
                "summary": "Update Horoscope",
                "operationId": "2dd7126c036f23851856cb40faddcb30",
                "parameters": [
                    {
                        "name": "id",
                        "in": "path",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "requestBody": {
                    "content": {
                        "application/json": {
                            "schema": {
                                "properties": {
                                    "content": {
                                        "type": "string",
                                        "example": "horoscope content"
                                    },
                                    "type": {
                                        "type": "number",
                                        "example": 1
                                    },
                                    "horoscope_id": {
                                        "type": "number",
                                        "example": 1
                                    },
                                    "date": {
                                        "type": "string",
                                        "example": "2022-05-25"
                                    },
                                    "time": {
                                        "type": "string",
                                        "example": "17:16"
                                    },
                                    "status": {
                                        "type": "number",
                                        "example": 1
                                    }
                                },
                                "type": "object"
                            }
                        }
                    }
                },
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "id": {
                                            "type": "number",
                                            "example": 1
                                        },
                                        "content": {
                                            "type": "string",
                                            "example": "content"
                                        },
                                        "type": {
                                            "type": "number",
                                            "example": 1
                                        },
                                        "horoscope_id": {
                                            "type": "number",
                                            "example": 1
                                        },
                                        "date": {
                                            "type": "string",
                                            "example": "2022-05-24"
                                        },
                                        "time": {
                                            "type": "string",
                                            "example": "17:16"
                                        },
                                        "status": {
                                            "type": "number",
                                            "example": 1
                                        },
                                        "datetime": {
                                            "type": "string",
                                            "example": "2022-05-24 17:16"
                                        },
                                        "type_date": {
                                            "type": "number",
                                            "example": 2
                                        },
                                        "user_id": {
                                            "type": "number",
                                            "example": 2
                                        },
                                        "date_at": {
                                            "type": "string",
                                            "example": "24 may 2022"
                                        },
                                        "updated_at": {
                                            "type": "string",
                                            "example": "2021-12-11T09:25:53.000000Z"
                                        },
                                        "created_at": {
                                            "type": "string",
                                            "example": "2021-12-11T09:25:53.000000Z"
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    },
                    "400": {
                        "description": "invalid",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "success": {
                                            "type": "string",
                                            "example": false
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            },
            "delete": {
                "tags": [
                    "Horoscope"
                ],
                "summary": "Delete Horoscope",
                "operationId": "f1f51d1b2c6b2940e90b72a1b4b6dfc2",
                "parameters": [
                    {
                        "name": "id",
                        "in": "path",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "success": {
                                            "type": "string",
                                            "example": "true"
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/api/horoscopes-status/{id}": {
            "post": {
                "tags": [
                    "Horoscope"
                ],
                "summary": "Status Horoscope",
                "operationId": "095752a9fdc588d2b6604eb5d1c71d5b",
                "parameters": [
                    {
                        "name": "id",
                        "in": "path",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "requestBody": {
                    "content": {
                        "application/json": {
                            "schema": {
                                "properties": {
                                    "status": {
                                        "type": "number",
                                        "example": 1
                                    }
                                },
                                "type": "object"
                            }
                        }
                    }
                },
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "success": {
                                            "type": "string",
                                            "example": "true"
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/api/horoscopes-type/{type}": {
            "get": {
                "tags": [
                    "Horoscope"
                ],
                "summary": "Show Horoscopes",
                "operationId": "fb2af4b8282b7de5b8758555c89ebd3f",
                "parameters": [
                    {
                        "name": "type",
                        "in": "path",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "success, type 1 = gelen burcler, type 2 = oxunan burcler, type 3 = gozleyen burcler, type 4 = deaktiv burcler, type 5 = silinen burcler type 6 = yenilenmis burcler",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "type": "array",
                                            "items": {
                                                "properties": {
                                                    "id": {
                                                        "type": "number",
                                                        "example": "1"
                                                    },
                                                    "datetime": {
                                                        "type": "string",
                                                        "example": "2020-11-27 11:17:00"
                                                    },
                                                    "status": {
                                                        "type": "number",
                                                        "example": 0
                                                    }
                                                },
                                                "type": "object"
                                            }
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/api/horoscope-love": {
            "get": {
                "tags": [
                    "Horoscope Love"
                ],
                "summary": "Show Horoscope Love",
                "operationId": "a7cdfaa74d70b0d1a6e4c546f76d2d8e",
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "type": "array",
                                            "items": {
                                                "properties": {
                                                    "id": {
                                                        "type": "number",
                                                        "example": "1"
                                                    },
                                                    "datetime": {
                                                        "type": "string",
                                                        "example": "2020-11-27 11:17:00"
                                                    },
                                                    "status": {
                                                        "type": "number",
                                                        "example": 0
                                                    }
                                                },
                                                "type": "object"
                                            }
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/api/horoscope-love/{id}/edit": {
            "get": {
                "tags": [
                    "Horoscope Love"
                ],
                "summary": "Show one Horoscope Love",
                "operationId": "2a7b68d8f73babd5b78bbf119081eafb",
                "parameters": [
                    {
                        "name": "id",
                        "in": "path",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "type": "array",
                                            "items": {
                                                "properties": {
                                                    "id": {
                                                        "type": "number",
                                                        "example": "1"
                                                    },
                                                    "horoscope_id": {
                                                        "type": "number",
                                                        "example": 1
                                                    },
                                                    "love_id": {
                                                        "type": "number",
                                                        "example": 1
                                                    },
                                                    "content": {
                                                        "type": "string",
                                                        "example": "horoscope content"
                                                    },
                                                    "status": {
                                                        "type": "number",
                                                        "example": 1
                                                    },
                                                    "horoscope": {
                                                        "type": "array",
                                                        "items": {
                                                            "properties": {
                                                                "id": {
                                                                    "type": "number",
                                                                    "example": 26
                                                                },
                                                                "name": {
                                                                    "type": "string",
                                                                    "example": "role name"
                                                                }
                                                            },
                                                            "type": "object"
                                                        }
                                                    },
                                                    "love": {
                                                        "type": "array",
                                                        "items": {
                                                            "properties": {
                                                                "id": {
                                                                    "type": "number",
                                                                    "example": 26
                                                                },
                                                                "name": {
                                                                    "type": "string",
                                                                    "example": "role name"
                                                                }
                                                            },
                                                            "type": "object"
                                                        }
                                                    }
                                                },
                                                "type": "object"
                                            }
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/api/horoscope-love/{id}": {
            "put": {
                "tags": [
                    "Horoscope Love"
                ],
                "summary": "Update Horoscope Love",
                "operationId": "a1644871f53a8d7e0aed0b878496dedd",
                "parameters": [
                    {
                        "name": "id",
                        "in": "path",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "requestBody": {
                    "content": {
                        "application/json": {
                            "schema": {
                                "properties": {
                                    "horoscope_id": {
                                        "type": "number",
                                        "example": 1
                                    },
                                    "love_id": {
                                        "type": "number",
                                        "example": 1
                                    },
                                    "content": {
                                        "type": "string",
                                        "example": "horoscope content"
                                    },
                                    "status": {
                                        "type": "number",
                                        "example": 1
                                    }
                                },
                                "type": "object"
                            }
                        }
                    }
                },
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "success": {
                                            "type": "string",
                                            "example": true
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    },
                    "400": {
                        "description": "invalid",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "success": {
                                            "type": "string",
                                            "example": false
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/api/horoscope-properties": {
            "get": {
                "tags": [
                    "Horoscope Properties"
                ],
                "summary": "Show Horoscope Properties",
                "operationId": "7a584481c4474f11a1d5b63e1e120c90",
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "type": "array",
                                            "items": {
                                                "properties": {
                                                    "id": {
                                                        "type": "number",
                                                        "example": "1"
                                                    },
                                                    "horoscope_id": {
                                                        "type": "number",
                                                        "example": "1"
                                                    },
                                                    "horoscope_property_id": {
                                                        "type": "number",
                                                        "example": "1"
                                                    },
                                                    "status": {
                                                        "type": "number",
                                                        "example": 0
                                                    },
                                                    "horoscope": {
                                                        "type": "array",
                                                        "items": {
                                                            "properties": {
                                                                "id": {
                                                                    "type": "number",
                                                                    "example": 26
                                                                },
                                                                "name": {
                                                                    "type": "string",
                                                                    "example": "horoscope name"
                                                                }
                                                            },
                                                            "type": "object"
                                                        }
                                                    },
                                                    "property": {
                                                        "type": "array",
                                                        "items": {
                                                            "properties": {
                                                                "id": {
                                                                    "type": "number",
                                                                    "example": 26
                                                                },
                                                                "name": {
                                                                    "type": "string",
                                                                    "example": "property name"
                                                                }
                                                            },
                                                            "type": "object"
                                                        }
                                                    }
                                                },
                                                "type": "object"
                                            }
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            },
            "post": {
                "tags": [
                    "Horoscope Properties"
                ],
                "summary": "Store Horoscope Properties",
                "operationId": "1ea7244b3b62ffa9218e5fe6f5a8af84",
                "requestBody": {
                    "content": {
                        "application/json": {
                            "schema": {
                                "properties": {
                                    "horoscope_id": {
                                        "type": "number",
                                        "example": 1
                                    },
                                    "horoscope_property_id": {
                                        "type": "number",
                                        "example": 1
                                    },
                                    "status": {
                                        "type": "number",
                                        "example": 1
                                    }
                                },
                                "type": "object"
                            }
                        }
                    }
                },
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "success": {
                                            "type": "string",
                                            "example": true
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    },
                    "400": {
                        "description": "invalid",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "success": {
                                            "type": "string",
                                            "example": false
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/api/horoscope-properties/create": {
            "get": {
                "tags": [
                    "Horoscope Properties"
                ],
                "summary": "Create Horoscope Properties",
                "operationId": "cf84950469e731c4244b4143de75ce01",
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "type": "array",
                                            "items": {
                                                "properties": {
                                                    "id": {
                                                        "type": "number",
                                                        "example": "1"
                                                    },
                                                    "name": {
                                                        "type": "string",
                                                        "example": "name"
                                                    }
                                                },
                                                "type": "object"
                                            }
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/api/horoscope-properties/{id}/edit": {
            "get": {
                "tags": [
                    "Horoscope Properties"
                ],
                "summary": "Show one  Horoscope Properties",
                "operationId": "8d7df93c97338aa7b9c141c2cab453a5",
                "parameters": [
                    {
                        "name": "id",
                        "in": "path",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "type": "array",
                                            "items": {
                                                "properties": {
                                                    "id": {
                                                        "type": "number",
                                                        "example": 1
                                                    },
                                                    "horoscope_id": {
                                                        "type": "number",
                                                        "example": 1
                                                    },
                                                    "horoscope_property_id": {
                                                        "type": "number",
                                                        "example": 1
                                                    },
                                                    "status": {
                                                        "type": "number",
                                                        "example": 1
                                                    },
                                                    "horoscope": {
                                                        "type": "array",
                                                        "items": {
                                                            "properties": {
                                                                "id": {
                                                                    "type": "number",
                                                                    "example": 26
                                                                },
                                                                "name": {
                                                                    "type": "string",
                                                                    "example": "role name"
                                                                }
                                                            },
                                                            "type": "object"
                                                        }
                                                    },
                                                    "property": {
                                                        "type": "array",
                                                        "items": {
                                                            "properties": {
                                                                "id": {
                                                                    "type": "number",
                                                                    "example": 26
                                                                },
                                                                "name": {
                                                                    "type": "string",
                                                                    "example": "role name"
                                                                }
                                                            },
                                                            "type": "object"
                                                        }
                                                    }
                                                },
                                                "type": "object"
                                            }
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/api/horoscope-properties/{id}": {
            "put": {
                "tags": [
                    "Horoscope Properties"
                ],
                "summary": "Update Horoscope Properties",
                "operationId": "f65c9b6630df073eb669a4b24fe0777d",
                "parameters": [
                    {
                        "name": "id",
                        "in": "path",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "requestBody": {
                    "content": {
                        "application/json": {
                            "schema": {
                                "properties": {
                                    "id": {
                                        "type": "number",
                                        "example": 1
                                    },
                                    "horoscope_id": {
                                        "type": "number",
                                        "example": 1
                                    },
                                    "horoscope_property_id": {
                                        "type": "number",
                                        "example": 1
                                    },
                                    "status": {
                                        "type": "number",
                                        "example": 1
                                    }
                                },
                                "type": "object"
                            }
                        }
                    }
                },
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "id": {
                                            "type": "number",
                                            "example": 1
                                        },
                                        "horoscope_id": {
                                            "type": "number",
                                            "example": 1
                                        },
                                        "horoscope_property_id": {
                                            "type": "number",
                                            "example": 1
                                        },
                                        "status": {
                                            "type": "number",
                                            "example": 1
                                        },
                                        "date_at": {
                                            "type": "string",
                                            "example": "24 may 2022"
                                        },
                                        "updated_at": {
                                            "type": "string",
                                            "example": "2021-12-11T09:25:53.000000Z"
                                        },
                                        "created_at": {
                                            "type": "string",
                                            "example": "2021-12-11T09:25:53.000000Z"
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    },
                    "400": {
                        "description": "invalid",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "success": {
                                            "type": "string",
                                            "example": false
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            },
            "post": {
                "tags": [
                    "Horoscope Properties"
                ],
                "summary": "Status Horoscope Properties",
                "operationId": "77dd915eff6f68478c5bc18711c5c8c3",
                "parameters": [
                    {
                        "name": "id",
                        "in": "path",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "requestBody": {
                    "content": {
                        "application/json": {
                            "schema": {
                                "properties": {
                                    "status": {
                                        "type": "number",
                                        "example": 1
                                    }
                                },
                                "type": "object"
                            }
                        }
                    }
                },
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "success": {
                                            "type": "string",
                                            "example": "true"
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            },
            "delete": {
                "tags": [
                    "Horoscope Properties"
                ],
                "summary": "Delete Horoscope Properties",
                "operationId": "cc62a309540f617ac493d01a1d1f7b4e",
                "parameters": [
                    {
                        "name": "id",
                        "in": "path",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "success": {
                                            "type": "string",
                                            "example": "true"
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/api/logs": {
            "get": {
                "tags": [
                    "Logs"
                ],
                "summary": "Show Log",
                "operationId": "0de5caee6548f5f674046097141bf126",
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "type": "array",
                                            "items": {
                                                "properties": {
                                                    "id": {
                                                        "type": "number",
                                                        "example": "1"
                                                    },
                                                    "user_id": {
                                                        "type": "number",
                                                        "example": 1
                                                    },
                                                    "info": {
                                                        "type": "string",
                                                        "example": "ID: 2"
                                                    },
                                                    "action": {
                                                        "type": "string",
                                                        "example": "Aktiv edildi"
                                                    },
                                                    "module": {
                                                        "type": "string",
                                                        "example": "music"
                                                    },
                                                    "ip": {
                                                        "type": "string",
                                                        "example": "127.0.0.1"
                                                    }
                                                },
                                                "type": "object"
                                            }
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/api/logs/{id}": {
            "delete": {
                "tags": [
                    "Logs"
                ],
                "summary": "Delete Log",
                "operationId": "56bd03c4f97b903268b995a98bc34766",
                "parameters": [
                    {
                        "name": "id",
                        "in": "path",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "msg": {
                                            "type": "string",
                                            "example": "delete success"
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/api/mp3": {
            "get": {
                "tags": [
                    "Mp3"
                ],
                "summary": "Show Mp3",
                "operationId": "5e178d7369bf3da9fb05ee0f8e52e18a",
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "type": "array",
                                            "items": {
                                                "properties": {
                                                    "id": {
                                                        "type": "number",
                                                        "example": "1"
                                                    },
                                                    "singer_name": {
                                                        "type": "string",
                                                        "example": "singer name"
                                                    },
                                                    "music_name": {
                                                        "type": "string",
                                                        "example": "music name"
                                                    },
                                                    "file": {
                                                        "type": "string",
                                                        "example": "asdfasddgsdgfsg1629107655611a35c7608d2611a35c7608d5.mp3"
                                                    },
                                                    "status": {
                                                        "type": "number",
                                                        "example": 0
                                                    }
                                                },
                                                "type": "object"
                                            }
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/api/deleted-mp3": {
            "get": {
                "tags": [
                    "Mp3"
                ],
                "summary": "Show deleted Mp3",
                "operationId": "f211a66052c065ba958360fe1622820b",
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "type": "array",
                                            "items": {
                                                "properties": {
                                                    "id": {
                                                        "type": "number",
                                                        "example": "1"
                                                    },
                                                    "singer_name": {
                                                        "type": "string",
                                                        "example": "singer name"
                                                    },
                                                    "music_name": {
                                                        "type": "string",
                                                        "example": "music name"
                                                    },
                                                    "file": {
                                                        "type": "string",
                                                        "example": "asdfasddgsdgfsg1629107655611a35c7608d2611a35c7608d5.mp3"
                                                    },
                                                    "status": {
                                                        "type": "number",
                                                        "example": 0
                                                    }
                                                },
                                                "type": "object"
                                            }
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/api/coming-mp3": {
            "get": {
                "tags": [
                    "Mp3"
                ],
                "summary": "Show coming Mp3",
                "operationId": "70e1f7248237576e296d3f8ca38dface",
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "type": "array",
                                            "items": {
                                                "properties": {
                                                    "id": {
                                                        "type": "number",
                                                        "example": "1"
                                                    },
                                                    "singer_name": {
                                                        "type": "string",
                                                        "example": "singer name"
                                                    },
                                                    "music_name": {
                                                        "type": "string",
                                                        "example": "music name"
                                                    },
                                                    "file": {
                                                        "type": "string",
                                                        "example": "asdfasddgsdgfsg1629107655611a35c7608d2611a35c7608d5.mp3"
                                                    },
                                                    "status": {
                                                        "type": "number",
                                                        "example": 0
                                                    }
                                                },
                                                "type": "object"
                                            }
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/api/mp3/{id}/edit": {
            "get": {
                "tags": [
                    "Mp3"
                ],
                "summary": "Show one Mp3",
                "operationId": "c19e7f9caddc9ac021f7bffd5a2e8e74",
                "parameters": [
                    {
                        "name": "id",
                        "in": "path",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "type": "array",
                                            "items": {
                                                "properties": {
                                                    "id": {
                                                        "type": "number",
                                                        "example": "1"
                                                    },
                                                    "singer_name": {
                                                        "type": "string",
                                                        "example": "singer name"
                                                    },
                                                    "music_name": {
                                                        "type": "string",
                                                        "example": "music name"
                                                    },
                                                    "file": {
                                                        "type": "string",
                                                        "example": "asdfasddgsdgfsg1629107655611a35c7608d2611a35c7608d5.mp3"
                                                    },
                                                    "status": {
                                                        "type": "number",
                                                        "example": 0
                                                    }
                                                },
                                                "type": "object"
                                            }
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/api/mp3/{id}": {
            "put": {
                "tags": [
                    "Mp3"
                ],
                "summary": "Update Category",
                "operationId": "e0498b71beecf00169bef01d66bade7a",
                "parameters": [
                    {
                        "name": "id",
                        "in": "path",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "requestBody": {
                    "content": {
                        "application/json": {
                            "schema": {
                                "properties": {
                                    "": {
                                        "properties": {
                                            "Singer name": {
                                                "type": "string",
                                                "example": "Singer name"
                                            },
                                            "music name": {
                                                "type": "string",
                                                "example": "music name"
                                            },
                                            "status": {
                                                "type": "number",
                                                "example": 0
                                            }
                                        },
                                        "type": "object"
                                    }
                                },
                                "type": "object",
                                "example": {
                                    "singer_name": "Singer name",
                                    "music_name": "Music name",
                                    "status": 1
                                }
                            }
                        }
                    }
                },
                "responses": {
                    "200": {
                        "description": "true",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "singer_name": {
                                            "type": "string",
                                            "example": "singer name"
                                        },
                                        "music_name": {
                                            "type": "string",
                                            "example": "music name"
                                        },
                                        "slug": {
                                            "type": "string",
                                            "example": "slug"
                                        },
                                        "url": {
                                            "type": "string",
                                            "example": "url"
                                        },
                                        "photo": {
                                            "type": "string",
                                            "example": "photo.jpg"
                                        },
                                        "user_id": {
                                            "type": "number",
                                            "example": 2
                                        },
                                        "file": {
                                            "type": "string",
                                            "example": "file.mp3"
                                        },
                                        "size": {
                                            "type": "string",
                                            "example": "2.8"
                                        },
                                        "datetime": {
                                            "type": "string",
                                            "example": "2021-08-16 13:42:23"
                                        },
                                        "download": {
                                            "type": "number",
                                            "example": 0
                                        },
                                        "status": {
                                            "type": "number",
                                            "example": 1
                                        },
                                        "is_deleted": {
                                            "type": "number",
                                            "example": 1
                                        },
                                        "updated_at": {
                                            "type": "string",
                                            "example": "2022-05-13T12:59:18.000000Z"
                                        },
                                        "created_at": {
                                            "type": "string",
                                            "example": "2021-12-11T09:25:53.000000Z"
                                        },
                                        "id": {
                                            "type": "string",
                                            "example": 25
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    },
                    "400": {
                        "description": "false",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "msg": {
                                            "type": "string",
                                            "example": "fail"
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            },
            "delete": {
                "tags": [
                    "Mp3"
                ],
                "summary": "Delete Mp3",
                "operationId": "c7420475bcabc46a961512d439c6b825",
                "parameters": [
                    {
                        "name": "id",
                        "in": "path",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "msg": {
                                            "type": "string",
                                            "example": "delete success"
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/api/mp3-users": {
            "get": {
                "tags": [
                    "Mp3 Users"
                ],
                "summary": "Show Mp3 Users",
                "operationId": "01900791bd105e1a4b26c6a134a62968",
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "type": "array",
                                            "items": {
                                                "properties": {
                                                    "id": {
                                                        "type": "number",
                                                        "example": "1"
                                                    },
                                                    "code": {
                                                        "type": "string",
                                                        "example": "code"
                                                    },
                                                    "name": {
                                                        "type": "string",
                                                        "example": "name"
                                                    },
                                                    "surname": {
                                                        "type": "string",
                                                        "example": "surname"
                                                    },
                                                    "email": {
                                                        "type": "string",
                                                        "example": "email"
                                                    },
                                                    "status": {
                                                        "type": "number",
                                                        "example": 0
                                                    }
                                                },
                                                "type": "object"
                                            }
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/api/mp3-blocked-users": {
            "get": {
                "tags": [
                    "Mp3 Users"
                ],
                "summary": "Show Mp3 blocked users",
                "operationId": "49792cde6c7a4be15022d86cc1d9a0c5",
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "type": "array",
                                            "items": {
                                                "properties": {
                                                    "id": {
                                                        "type": "number",
                                                        "example": "1"
                                                    },
                                                    "code": {
                                                        "type": "string",
                                                        "example": "code"
                                                    },
                                                    "name": {
                                                        "type": "string",
                                                        "example": "name"
                                                    },
                                                    "surname": {
                                                        "type": "string",
                                                        "example": "surname"
                                                    },
                                                    "email": {
                                                        "type": "string",
                                                        "example": "email"
                                                    },
                                                    "status": {
                                                        "type": "number",
                                                        "example": 0
                                                    }
                                                },
                                                "type": "object"
                                            }
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/api/mp3-status-or-block": {
            "post": {
                "tags": [
                    "Mp3 Users"
                ],
                "summary": "Mp3 user status or block",
                "operationId": "9d5fdc7b7b9a6010060f73ba8f41ce60",
                "requestBody": {
                    "content": {
                        "application/json": {
                            "schema": {
                                "properties": {
                                    "": {
                                        "properties": {
                                            "id": {
                                                "type": "number",
                                                "example": 1
                                            },
                                            "status": {
                                                "type": "number",
                                                "example": 0
                                            }
                                        },
                                        "type": "object"
                                    }
                                },
                                "type": "object",
                                "example": {
                                    "id": 1,
                                    "status": 1
                                }
                            }
                        }
                    }
                },
                "responses": {
                    "200": {
                        "description": "true",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "msg": {
                                            "type": "string",
                                            "example": "fail"
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/api/mp3-users/{id}": {
            "delete": {
                "tags": [
                    "Mp3 Users"
                ],
                "summary": "Delete Mp3 User",
                "operationId": "a91fe2fe13e0f569dcef2bed827e7ed7",
                "parameters": [
                    {
                        "name": "id",
                        "in": "path",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "success": {
                                            "type": "string",
                                            "example": "true"
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/api/get-user-mp3/{id}": {
            "get": {
                "tags": [
                    "Mp3 Users"
                ],
                "summary": "Show User Mp3",
                "operationId": "0fba831e468652b54aa6effbfed9ca8f",
                "parameters": [
                    {
                        "name": "id",
                        "in": "path",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "type": "array",
                                            "items": {
                                                "properties": {
                                                    "id": {
                                                        "type": "number",
                                                        "example": "1"
                                                    },
                                                    "singer_name": {
                                                        "type": "string",
                                                        "example": "singer name"
                                                    },
                                                    "music_name": {
                                                        "type": "string",
                                                        "example": "music name"
                                                    },
                                                    "file": {
                                                        "type": "string",
                                                        "example": "asdfasddgsdgfsg1629107655611a35c7608d2611a35c7608d5.mp3"
                                                    },
                                                    "status": {
                                                        "type": "number",
                                                        "example": 0
                                                    }
                                                },
                                                "type": "object"
                                            }
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/api/news": {
            "get": {
                "tags": [
                    "News"
                ],
                "summary": "Show All News",
                "operationId": "4542adf6d889be753caf51e40f138f96",
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "type": "array",
                                            "items": {
                                                "properties": {
                                                    "id": {
                                                        "type": "number",
                                                        "example": "1"
                                                    },
                                                    "datetime": {
                                                        "type": "string",
                                                        "example": "2020-11-27 11:17:00"
                                                    },
                                                    "title": {
                                                        "type": "string",
                                                        "example": "title"
                                                    },
                                                    "author_id": {
                                                        "type": "number",
                                                        "example": 1
                                                    },
                                                    "user_id": {
                                                        "type": "number",
                                                        "example": 1
                                                    },
                                                    "status": {
                                                        "type": "number",
                                                        "example": 0
                                                    }
                                                },
                                                "type": "object"
                                            }
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            },
            "post": {
                "tags": [
                    "News"
                ],
                "summary": "Store News",
                "operationId": "c809af0662792cf6f3917128f4071e1d",
                "requestBody": {
                    "content": {
                        "application/json": {
                            "schema": {
                                "properties": {
                                    "title": {
                                        "type": "string",
                                        "example": "news title"
                                    },
                                    "content": {
                                        "type": "string",
                                        "example": "news content"
                                    },
                                    "category_id": {
                                        "type": "number",
                                        "example": 37
                                    },
                                    "module_id": {
                                        "type": "number",
                                        "example": 1
                                    },
                                    "author_id": {
                                        "type": "number",
                                        "example": 18
                                    },
                                    "date": {
                                        "type": "string",
                                        "example": "2021-07-27"
                                    },
                                    "time": {
                                        "type": "string",
                                        "example": "13:01:47"
                                    },
                                    "tag": {
                                        "type": "string",
                                        "example": "news tags"
                                    },
                                    "status": {
                                        "type": "number",
                                        "example": 1
                                    }
                                },
                                "type": "object"
                            }
                        }
                    }
                },
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "success": {
                                            "type": "string",
                                            "example": true
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    },
                    "400": {
                        "description": "invalid",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "success": {
                                            "type": "string",
                                            "example": false
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/api/news/create": {
            "get": {
                "tags": [
                    "News"
                ],
                "summary": "Create News",
                "operationId": "8c650a9d5ee3b6ec8d0092815448eed3",
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "category": {
                                            "type": "array",
                                            "items": {
                                                "properties": {
                                                    "id": {
                                                        "type": "number",
                                                        "example": "1"
                                                    },
                                                    "name": {
                                                        "type": "string",
                                                        "example": "name"
                                                    }
                                                },
                                                "type": "object"
                                            }
                                        },
                                        "author": {
                                            "type": "array",
                                            "items": {
                                                "properties": {
                                                    "id": {
                                                        "type": "number",
                                                        "example": "1"
                                                    },
                                                    "name": {
                                                        "type": "string",
                                                        "example": "name"
                                                    }
                                                },
                                                "type": "object"
                                            }
                                        },
                                        "module": {
                                            "type": "array",
                                            "items": {
                                                "properties": {
                                                    "id": {
                                                        "type": "number",
                                                        "example": "1"
                                                    },
                                                    "name": {
                                                        "type": "string",
                                                        "example": "name"
                                                    }
                                                },
                                                "type": "object"
                                            }
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/api/news/{id}/edit": {
            "get": {
                "tags": [
                    "News"
                ],
                "summary": "Show one News",
                "operationId": "2f0ae64d8a0371cfeaec07c60a807a7a",
                "parameters": [
                    {
                        "name": "id",
                        "in": "path",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "type": "array",
                                            "items": {
                                                "properties": {
                                                    "id": {
                                                        "type": "number",
                                                        "example": "1"
                                                    },
                                                    "title": {
                                                        "type": "string",
                                                        "example": "news title"
                                                    },
                                                    "photo": {
                                                        "type": "string",
                                                        "example": "photo.jpg"
                                                    },
                                                    "photo_title": {
                                                        "type": "string",
                                                        "example": "photo title"
                                                    },
                                                    "content": {
                                                        "type": "string",
                                                        "example": "content text"
                                                    },
                                                    "category_id": {
                                                        "type": "number",
                                                        "example": 1
                                                    },
                                                    "module_id": {
                                                        "type": "number",
                                                        "example": 1
                                                    },
                                                    "author_id": {
                                                        "type": "number",
                                                        "example": 1
                                                    },
                                                    "user_id": {
                                                        "type": "number",
                                                        "example": 1
                                                    },
                                                    "datatime": {
                                                        "type": "string",
                                                        "example": "2021-02-16 10:00:00"
                                                    },
                                                    "tag": {
                                                        "type": "string",
                                                        "example": "tags"
                                                    },
                                                    "type": {
                                                        "type": "number",
                                                        "example": 1
                                                    },
                                                    "status": {
                                                        "type": "number",
                                                        "example": 1
                                                    },
                                                    "videos": {
                                                        "type": "array",
                                                        "items": {
                                                            "properties": {
                                                                "id": {
                                                                    "type": "number",
                                                                    "example": 26
                                                                },
                                                                "video": {
                                                                    "type": "string",
                                                                    "example": "video url"
                                                                },
                                                                "video_type": {
                                                                    "type": "string",
                                                                    "example": "video_type"
                                                                },
                                                                "video_title": {
                                                                    "type": "string",
                                                                    "example": "video_title"
                                                                },
                                                                "news_id": {
                                                                    "type": "number",
                                                                    "example": 1
                                                                }
                                                            },
                                                            "type": "object"
                                                        }
                                                    },
                                                    "images": {
                                                        "type": "array",
                                                        "items": {
                                                            "properties": {
                                                                "id": {
                                                                    "type": "number",
                                                                    "example": 26
                                                                },
                                                                "image": {
                                                                    "type": "string",
                                                                    "example": "image url"
                                                                },
                                                                "image_type": {
                                                                    "type": "string",
                                                                    "example": "image_type"
                                                                },
                                                                "photo_title": {
                                                                    "type": "string",
                                                                    "example": "photo_title"
                                                                },
                                                                "news_id": {
                                                                    "type": "number",
                                                                    "example": 1
                                                                }
                                                            },
                                                            "type": "object"
                                                        }
                                                    }
                                                },
                                                "type": "object"
                                            }
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/api/news/{id}": {
            "put": {
                "tags": [
                    "News"
                ],
                "summary": "Update News",
                "operationId": "b60f91129cf052eda60d77a0c33afa39",
                "parameters": [
                    {
                        "name": "id",
                        "in": "path",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "requestBody": {
                    "content": {
                        "application/json": {
                            "schema": {
                                "properties": {
                                    "title": {
                                        "type": "string",
                                        "example": "news title"
                                    },
                                    "content": {
                                        "type": "string",
                                        "example": "news content"
                                    },
                                    "category_id": {
                                        "type": "number",
                                        "example": 1
                                    },
                                    "module_id": {
                                        "type": "number",
                                        "example": 1
                                    },
                                    "author_id": {
                                        "type": "number",
                                        "example": 1
                                    },
                                    "tag": {
                                        "type": "string",
                                        "example": "news tags"
                                    },
                                    "status": {
                                        "type": "number",
                                        "example": 1
                                    }
                                },
                                "type": "object"
                            }
                        }
                    }
                },
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "id": {
                                            "type": "number",
                                            "example": 1
                                        },
                                        "content": {
                                            "type": "string",
                                            "example": "content"
                                        },
                                        "type": {
                                            "type": "number",
                                            "example": 1
                                        },
                                        "horoscope_id": {
                                            "type": "number",
                                            "example": 1
                                        },
                                        "date": {
                                            "type": "string",
                                            "example": "2022-05-24"
                                        },
                                        "time": {
                                            "type": "string",
                                            "example": "17:16"
                                        },
                                        "status": {
                                            "type": "number",
                                            "example": 1
                                        },
                                        "datetime": {
                                            "type": "string",
                                            "example": "2022-05-24 17:16"
                                        },
                                        "type_date": {
                                            "type": "number",
                                            "example": 2
                                        },
                                        "user_id": {
                                            "type": "number",
                                            "example": 2
                                        },
                                        "date_at": {
                                            "type": "string",
                                            "example": "24 may 2022"
                                        },
                                        "updated_at": {
                                            "type": "string",
                                            "example": "2021-12-11T09:25:53.000000Z"
                                        },
                                        "created_at": {
                                            "type": "string",
                                            "example": "2021-12-11T09:25:53.000000Z"
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    },
                    "400": {
                        "description": "invalid",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "success": {
                                            "type": "string",
                                            "example": false
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            },
            "delete": {
                "tags": [
                    "News"
                ],
                "summary": "Delete News",
                "operationId": "8ce3b7c39e36ff3696d2e086a81d53b2",
                "parameters": [
                    {
                        "name": "id",
                        "in": "path",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "success": {
                                            "type": "string",
                                            "example": "true"
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/api/news-type/{type}": {
            "get": {
                "tags": [
                    "News"
                ],
                "summary": "Show News Type",
                "operationId": "30ced1ac92e5f1cf43696d0afea75a32",
                "parameters": [
                    {
                        "name": "type",
                        "in": "path",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "success, type 1 = gelen xeberler, type 2 = oxunan xeberler, type 3 = gozleyen xeberler, type 4 = yenilenmis xeberler, type 5 = deaktiv xeberler type 6 = silinen xeberler, type 7 = Arxiv Xeberler",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "type": "array",
                                            "items": {
                                                "properties": {
                                                    "id": {
                                                        "type": "number",
                                                        "example": "1"
                                                    },
                                                    "datetime": {
                                                        "type": "string",
                                                        "example": "2020-11-27 11:17:00"
                                                    },
                                                    "title": {
                                                        "type": "string",
                                                        "example": "title"
                                                    },
                                                    "author_id": {
                                                        "type": "number",
                                                        "example": 1
                                                    },
                                                    "user_id": {
                                                        "type": "number",
                                                        "example": 1
                                                    },
                                                    "status": {
                                                        "type": "number",
                                                        "example": 0
                                                    }
                                                },
                                                "type": "object"
                                            }
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/api/roles/create": {
            "get": {
                "tags": [
                    "Roles"
                ],
                "summary": "Create Roles",
                "operationId": "399d6412794357132ef5fed2865a5084",
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "type": "array",
                                            "items": {
                                                "properties": {
                                                    "id": {
                                                        "type": "number",
                                                        "example": "1"
                                                    },
                                                    "name": {
                                                        "type": "string",
                                                        "example": "name"
                                                    }
                                                },
                                                "type": "object"
                                            }
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/api/roles": {
            "post": {
                "tags": [
                    "Roles"
                ],
                "summary": "Store Role",
                "operationId": "db63b3e915d0e7012e5b204ea9f7abea",
                "requestBody": {
                    "content": {
                        "application/json": {
                            "schema": {
                                "properties": {
                                    "": {
                                        "properties": {
                                            "name": {
                                                "type": "string"
                                            }
                                        },
                                        "type": "object"
                                    }
                                },
                                "type": "object",
                                "example": {
                                    "name": "role name",
                                    "permission": {
                                        "34": "per name",
                                        "35": "per name"
                                    }
                                }
                            }
                        }
                    }
                },
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "success": {
                                            "type": "string",
                                            "example": true
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    },
                    "400": {
                        "description": "invalid",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "success": {
                                            "type": "string",
                                            "example": false
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/api/search/{module}": {
            "post": {
                "tags": [
                    "Search"
                ],
                "summary": "Search",
                "operationId": "de5cbd0c0366870f0ab7767ea0d24be0",
                "parameters": [
                    {
                        "name": "module",
                        "in": "path",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "requestBody": {
                    "content": {
                        "application/json": {
                            "schema": {
                                "properties": {
                                    "fullname": {
                                        "type": "string",
                                        "example": "author name edt"
                                    }
                                },
                                "type": "object"
                            }
                        }
                    }
                },
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "success": {
                                            "type": "string",
                                            "example": true
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    },
                    "400": {
                        "description": "invalid",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "success": {
                                            "type": "string",
                                            "example": false
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/api/seo-news": {
            "get": {
                "tags": [
                    "Seo News"
                ],
                "summary": "Show Seo News",
                "operationId": "1a27438084560d7fe4353e73f004ae74",
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "type": "array",
                                            "items": {
                                                "properties": {
                                                    "id": {
                                                        "type": "number",
                                                        "example": "1"
                                                    },
                                                    "title": {
                                                        "type": "string",
                                                        "example": 1
                                                    },
                                                    "datatime": {
                                                        "type": "string",
                                                        "example": "2022-03-14 20:25:00"
                                                    }
                                                },
                                                "type": "object"
                                            }
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/api/seo-news/{id}/edit": {
            "get": {
                "tags": [
                    "Seo News"
                ],
                "summary": "Show one Seo News",
                "operationId": "a10f123d97361641f0893a17d11a271e",
                "parameters": [
                    {
                        "name": "id",
                        "in": "path",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "type": "array",
                                            "items": {
                                                "properties": {
                                                    "id": {
                                                        "type": "number",
                                                        "example": "1"
                                                    },
                                                    "description": {
                                                        "type": "string",
                                                        "example": "description"
                                                    },
                                                    "tag": {
                                                        "type": "string",
                                                        "example": "tag"
                                                    }
                                                },
                                                "type": "object"
                                            }
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/api/seo-news/{id}": {
            "put": {
                "tags": [
                    "Seo News"
                ],
                "summary": "Store Seo News",
                "operationId": "a892576f27d13f66f64375e19f1e611a",
                "parameters": [
                    {
                        "name": "id",
                        "in": "path",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "requestBody": {
                    "content": {
                        "application/json": {
                            "schema": {
                                "properties": {
                                    "description": {
                                        "type": "string",
                                        "example": "description"
                                    },
                                    "tag": {
                                        "type": "string",
                                        "example": "tag"
                                    },
                                    "changefreq": {
                                        "type": "string",
                                        "example": "changefreq"
                                    },
                                    "priority": {
                                        "type": "string",
                                        "example": "priority"
                                    },
                                    "meta_index": {
                                        "type": "number",
                                        "example": 1
                                    },
                                    "status": {
                                        "type": "string",
                                        "example": 1
                                    }
                                },
                                "type": "object"
                            }
                        }
                    }
                },
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "success": {
                                            "type": "string",
                                            "example": true
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    },
                    "400": {
                        "description": "invalid",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "success": {
                                            "type": "string",
                                            "example": false
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/api/seo-sitemap": {
            "get": {
                "tags": [
                    "Seo News"
                ],
                "summary": "Show Seo Category Sitemap",
                "operationId": "24c4454cf990a0a23863dec88de9104e",
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "type": "array",
                                            "items": {
                                                "properties": {
                                                    "id": {
                                                        "type": "number",
                                                        "example": "1"
                                                    },
                                                    "name": {
                                                        "type": "string",
                                                        "example": "name"
                                                    },
                                                    "priority": {
                                                        "type": "string",
                                                        "example": "priority"
                                                    },
                                                    "changefreq": {
                                                        "type": "string",
                                                        "example": "changefreq"
                                                    }
                                                },
                                                "type": "object"
                                            }
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/api/edit-sitemap/{id}": {
            "get": {
                "tags": [
                    "Seo News"
                ],
                "summary": "Edit seo category",
                "operationId": "b1c7efefe802238d6563efe235b61c21",
                "parameters": [
                    {
                        "name": "id",
                        "in": "path",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "type": "array",
                                            "items": {
                                                "properties": {
                                                    "id": {
                                                        "type": "number",
                                                        "example": "1"
                                                    },
                                                    "name": {
                                                        "type": "string",
                                                        "example": "name"
                                                    },
                                                    "Changefreq": {
                                                        "type": "string",
                                                        "example": "Changefreq"
                                                    },
                                                    "Priority": {
                                                        "type": "string",
                                                        "example": "Priority"
                                                    }
                                                },
                                                "type": "object"
                                            }
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/api/store-sitemap/{id}": {
            "put": {
                "tags": [
                    "Seo News"
                ],
                "summary": "Store category sitemap",
                "operationId": "e3b6ea54bc3072fba18c47677ddc776c",
                "parameters": [
                    {
                        "name": "id",
                        "in": "path",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "requestBody": {
                    "content": {
                        "application/json": {
                            "schema": {
                                "properties": {
                                    "changefreq": {
                                        "type": "string",
                                        "example": "changefreq"
                                    },
                                    "priority": {
                                        "type": "string",
                                        "example": "priority"
                                    }
                                },
                                "type": "object"
                            }
                        }
                    }
                },
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "success": {
                                            "type": "string",
                                            "example": true
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    },
                    "400": {
                        "description": "invalid",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "success": {
                                            "type": "string",
                                            "example": false
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/api/seo-google": {
            "get": {
                "tags": [
                    "Seo News"
                ],
                "summary": "Show Seo News Google Index",
                "operationId": "e9dc8918e52ed415fa9ef00418ac79c8",
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "type": "array",
                                            "items": {
                                                "properties": {
                                                    "id": {
                                                        "type": "number",
                                                        "example": "1"
                                                    },
                                                    "title": {
                                                        "type": "string",
                                                        "example": "title"
                                                    },
                                                    "datatime": {
                                                        "type": "string",
                                                        "example": "datatime"
                                                    }
                                                },
                                                "type": "object"
                                            }
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/api/seo-google-index/{id}": {
            "get": {
                "tags": [
                    "Seo News"
                ],
                "summary": "Seo News Google Index Status",
                "operationId": "de4e4c6cf543bfee06f304e2f465c31a",
                "parameters": [
                    {
                        "name": "id",
                        "in": "path",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "type": "array",
                                            "items": {
                                                "properties": {
                                                    "status": {
                                                        "type": "number",
                                                        "example": 200
                                                    },
                                                    "situation": {
                                                        "type": "string",
                                                        "example": "success"
                                                    },
                                                    "title": {
                                                        "type": "string",
                                                        "example": "msj"
                                                    }
                                                },
                                                "type": "object"
                                            }
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/api/seo-google-insert/{id}": {
            "get": {
                "tags": [
                    "Seo News"
                ],
                "summary": "Seo News Google Add Index",
                "operationId": "5339f7ad4e7aaa70a33f9a4a9af75c68",
                "parameters": [
                    {
                        "name": "id",
                        "in": "path",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "type": "array",
                                            "items": {
                                                "properties": {
                                                    "status": {
                                                        "type": "number",
                                                        "example": 200
                                                    },
                                                    "situation": {
                                                        "type": "string",
                                                        "example": "success"
                                                    },
                                                    "title": {
                                                        "type": "string",
                                                        "example": "msj"
                                                    }
                                                },
                                                "type": "object"
                                            }
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/api/seo-google-delete/{id}": {
            "get": {
                "tags": [
                    "Seo News"
                ],
                "summary": "Seo News Google Delete Index",
                "operationId": "27a7636522c698bd6cbd938d4d159da4",
                "parameters": [
                    {
                        "name": "id",
                        "in": "path",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "type": "array",
                                            "items": {
                                                "properties": {
                                                    "status": {
                                                        "type": "number",
                                                        "example": 200
                                                    },
                                                    "situation": {
                                                        "type": "string",
                                                        "example": "success"
                                                    },
                                                    "title": {
                                                        "type": "string",
                                                        "example": "msj"
                                                    }
                                                },
                                                "type": "object"
                                            }
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/api/statistics": {
            "get": {
                "tags": [
                    "Statistics"
                ],
                "summary": "Show Statistics",
                "operationId": "f98bf7bffe7b93db68421401379689f7",
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "type": "array",
                                            "items": {
                                                "properties": {
                                                    "id": {
                                                        "type": "number",
                                                        "example": "1"
                                                    },
                                                    "name": {
                                                        "type": "string",
                                                        "example": "user name ex"
                                                    },
                                                    "surname": {
                                                        "type": "string",
                                                        "example": "string"
                                                    },
                                                    "photo": {
                                                        "type": "string",
                                                        "example": null
                                                    },
                                                    "news_daily_count": {
                                                        "type": "number",
                                                        "example": 0
                                                    },
                                                    "news_week_count": {
                                                        "type": "number",
                                                        "example": 1
                                                    },
                                                    "news_month_count": {
                                                        "type": "number",
                                                        "example": 5
                                                    }
                                                },
                                                "type": "object"
                                            }
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/api/statistics/{type}/{id}": {
            "get": {
                "tags": [
                    "Statistics"
                ],
                "summary": "User Statistics",
                "operationId": "1bd0584e1b4e18c5f6cb0e45424f0bb2",
                "parameters": [
                    {
                        "name": "type",
                        "in": "path",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    },
                    {
                        "name": "id",
                        "in": "path",
                        "required": true,
                        "schema": {
                            "type": "number"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "success type  1 = daily , type 2 = week, type 3 = month",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "id": {
                                            "type": "number",
                                            "example": 1
                                        },
                                        "title": {
                                            "type": "string",
                                            "example": "title"
                                        },
                                        "slug": {
                                            "type": "string",
                                            "example": "slug"
                                        },
                                        "url": {
                                            "type": "string",
                                            "example": "url"
                                        },
                                        "photo": {
                                            "type": "string",
                                            "example": "photo"
                                        },
                                        "photo_title": {
                                            "type": "string",
                                            "example": "photo_title"
                                        },
                                        "content": {
                                            "type": "string",
                                            "example": "content"
                                        },
                                        "datetime": {
                                            "type": "string",
                                            "example": "datetime"
                                        },
                                        "category_id": {
                                            "type": "number",
                                            "example": 1
                                        },
                                        "module_id": {
                                            "type": "number",
                                            "example": 1
                                        },
                                        "author_id": {
                                            "type": "number",
                                            "example": 1
                                        },
                                        "user_id": {
                                            "type": "number",
                                            "example": 1
                                        },
                                        "tag": {
                                            "type": "string",
                                            "example": "tag"
                                        },
                                        "status": {
                                            "type": "number",
                                            "example": 1
                                        },
                                        "type": {
                                            "type": "number",
                                            "example": 1
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/api/users": {
            "get": {
                "tags": [
                    "Users"
                ],
                "summary": "Show Users",
                "operationId": "2f613bc1b937c50b7d074ade01cf8231",
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "type": "array",
                                            "items": {
                                                "properties": {
                                                    "id": {
                                                        "type": "number",
                                                        "example": "1"
                                                    },
                                                    "name": {
                                                        "type": "string",
                                                        "example": "name"
                                                    },
                                                    "surname": {
                                                        "type": "string",
                                                        "example": "surname"
                                                    },
                                                    "username": {
                                                        "type": "string",
                                                        "example": "surname"
                                                    },
                                                    "email": {
                                                        "type": "string",
                                                        "example": "email@mail.com"
                                                    },
                                                    "phone": {
                                                        "type": "string",
                                                        "example": "0515117778"
                                                    },
                                                    "photo": {
                                                        "type": "string",
                                                        "example": "asdfasddgsdgfsg1629107655611a35c7608d2611a35c7608d5.jpg"
                                                    },
                                                    "status": {
                                                        "type": "number",
                                                        "example": 0
                                                    }
                                                },
                                                "type": "object"
                                            }
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            },
            "post": {
                "tags": [
                    "Users"
                ],
                "summary": "Store Users",
                "operationId": "dfdc05d4698ce7772e9aa611135f0921",
                "requestBody": {
                    "content": {
                        "application/json": {
                            "schema": {
                                "properties": {
                                    "": {
                                        "properties": {
                                            "name": {
                                                "type": "string",
                                                "example": "user name ex"
                                            },
                                            "surname": {
                                                "type": "string"
                                            },
                                            "username": {
                                                "type": "string"
                                            },
                                            "password": {
                                                "type": "string"
                                            },
                                            "email": {
                                                "type": "string"
                                            },
                                            "phone": {
                                                "type": "string",
                                                "example": "0585117778"
                                            },
                                            "role": {
                                                "type": "number",
                                                "example": 3
                                            },
                                            "status": {
                                                "type": "number",
                                                "example": 1
                                            },
                                            "is_night": {
                                                "type": "number",
                                                "example": 1
                                            },
                                            "is_outside": {
                                                "type": "number",
                                                "example": 1
                                            },
                                            "photo": {
                                                "description": "photo to upload",
                                                "type": "file",
                                                "example": "data:image/jpeg;base64, yourSuperLongStringBinary"
                                            }
                                        },
                                        "type": "object"
                                    }
                                },
                                "type": "object"
                            }
                        }
                    }
                },
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "id": {
                                            "type": "number",
                                            "example": 1
                                        },
                                        "name": {
                                            "type": "string",
                                            "example": "name"
                                        },
                                        "surname": {
                                            "type": "string",
                                            "example": "surname"
                                        },
                                        "username": {
                                            "type": "string",
                                            "example": "username"
                                        },
                                        "email": {
                                            "type": "string",
                                            "example": "email"
                                        },
                                        "photo": {
                                            "type": "string",
                                            "example": "photo"
                                        },
                                        "phone": {
                                            "type": "string",
                                            "example": "phone"
                                        },
                                        "user_id": {
                                            "type": "number",
                                            "example": 5
                                        },
                                        "status": {
                                            "type": "number",
                                            "example": 1
                                        },
                                        "updated_at": {
                                            "type": "string",
                                            "example": "2021-12-11T09:25:53.000000Z"
                                        },
                                        "created_at": {
                                            "type": "string",
                                            "example": "2021-12-11T09:25:53.000000Z"
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    },
                    "400": {
                        "description": "invalid",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "success": {
                                            "type": "string",
                                            "example": false
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/api/users/create": {
            "get": {
                "tags": [
                    "Users"
                ],
                "summary": "Create Users",
                "operationId": "0a05dfcee280117b98a07538e35dd276",
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "type": "array",
                                            "items": {
                                                "properties": {
                                                    "id": {
                                                        "type": "number",
                                                        "example": "1"
                                                    },
                                                    "name": {
                                                        "type": "string",
                                                        "example": "name"
                                                    }
                                                },
                                                "type": "object"
                                            }
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/api/users/{id}/edit": {
            "get": {
                "tags": [
                    "Users"
                ],
                "summary": "Show one User",
                "operationId": "21c0641348ffae5cf53687d955607709",
                "parameters": [
                    {
                        "name": "id",
                        "in": "path",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "type": "array",
                                            "items": {
                                                "properties": {
                                                    "id": {
                                                        "type": "number",
                                                        "example": "1"
                                                    },
                                                    "name": {
                                                        "type": "string",
                                                        "example": "User name"
                                                    },
                                                    "surname": {
                                                        "type": "string",
                                                        "example": "User surname"
                                                    },
                                                    "username": {
                                                        "type": "string",
                                                        "example": "User username"
                                                    },
                                                    "email": {
                                                        "type": "string",
                                                        "example": "Author email"
                                                    },
                                                    "photo": {
                                                        "type": "string",
                                                        "example": "asdfasddgsdgfsg1629107655611a35c7608d2611a35c7608d5.jpg"
                                                    },
                                                    "is_night": {
                                                        "type": "number",
                                                        "example": 1
                                                    },
                                                    "is_outside": {
                                                        "type": "number",
                                                        "example": 1
                                                    },
                                                    "status": {
                                                        "type": "number",
                                                        "example": 1
                                                    },
                                                    "roles": {
                                                        "type": "array",
                                                        "items": {
                                                            "properties": {
                                                                "id": {
                                                                    "type": "number",
                                                                    "example": 26
                                                                },
                                                                "name": {
                                                                    "type": "string",
                                                                    "example": "role name"
                                                                }
                                                            },
                                                            "type": "object"
                                                        }
                                                    }
                                                },
                                                "type": "object"
                                            }
                                        },
                                        "roles": {
                                            "type": "array",
                                            "items": {
                                                "properties": {
                                                    "id": {
                                                        "type": "number",
                                                        "example": 26
                                                    },
                                                    "name": {
                                                        "type": "string",
                                                        "example": "role name"
                                                    }
                                                },
                                                "type": "object"
                                            }
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/api/users/{id}": {
            "put": {
                "tags": [
                    "Users"
                ],
                "summary": "Update User",
                "operationId": "9c9811c3cfc33bf272ea5e7e27ca9dee",
                "parameters": [
                    {
                        "name": "id",
                        "in": "path",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "requestBody": {
                    "content": {
                        "application/json": {
                            "schema": {
                                "properties": {
                                    "name": {
                                        "type": "string",
                                        "example": "user name ex"
                                    },
                                    "surname": {
                                        "type": "string"
                                    },
                                    "username": {
                                        "type": "string"
                                    },
                                    "password": {
                                        "type": "string"
                                    },
                                    "email": {
                                        "type": "string"
                                    },
                                    "phone": {
                                        "type": "string",
                                        "example": "0585117778"
                                    },
                                    "role": {
                                        "type": "number",
                                        "example": 3
                                    },
                                    "status": {
                                        "type": "number",
                                        "example": 1
                                    },
                                    "is_night": {
                                        "type": "number",
                                        "example": 1
                                    },
                                    "is_outside": {
                                        "type": "number",
                                        "example": 1
                                    },
                                    "photo": {
                                        "description": "photo to upload",
                                        "type": "file",
                                        "example": "data:image/jpeg;base64, yourSuperLongStringBinary"
                                    }
                                },
                                "type": "object"
                            }
                        }
                    }
                },
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "id": {
                                            "type": "number",
                                            "example": 1
                                        },
                                        "name": {
                                            "type": "string",
                                            "example": "name"
                                        },
                                        "surname": {
                                            "type": "string",
                                            "example": "surname"
                                        },
                                        "email": {
                                            "type": "string",
                                            "example": "email"
                                        },
                                        "photo": {
                                            "type": "string",
                                            "example": "photo"
                                        },
                                        "user_id": {
                                            "type": "number",
                                            "example": 5
                                        },
                                        "status": {
                                            "type": "number",
                                            "example": 1
                                        },
                                        "updated_at": {
                                            "type": "string",
                                            "example": "2021-12-11T09:25:53.000000Z"
                                        },
                                        "created_at": {
                                            "type": "string",
                                            "example": "2021-12-11T09:25:53.000000Z"
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    },
                    "400": {
                        "description": "invalid",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "success": {
                                            "type": "string",
                                            "example": false
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            },
            "delete": {
                "tags": [
                    "Users"
                ],
                "summary": "Delete User",
                "operationId": "32d29e2e9026680611f03b9f0433684f",
                "parameters": [
                    {
                        "name": "id",
                        "in": "path",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "success": {
                                            "type": "string",
                                            "example": "true"
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/api/login": {
            "post": {
                "tags": [
                    "Login"
                ],
                "summary": "User Login",
                "operationId": "b7a23ebeab0f6fdac09529bf3258926c",
                "requestBody": {
                    "content": {
                        "application/json": {
                            "schema": {
                                "properties": {
                                    "": {
                                        "properties": {
                                            "username": {
                                                "type": "string",
                                                "example": "username"
                                            },
                                            "password": {
                                                "type": "string",
                                                "example": "password"
                                            }
                                        },
                                        "type": "object"
                                    }
                                },
                                "type": "object",
                                "example": {
                                    "username": "muxbir",
                                    "password": "sadiq123@#"
                                }
                            }
                        }
                    }
                },
                "responses": {
                    "200": {
                        "description": "true",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "success": {
                                            "type": "bolean",
                                            "example": true
                                        },
                                        "token": {
                                            "type": "string",
                                            "example": "token"
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                },
                "security": []
            }
        },
        "/api/video": {
            "get": {
                "tags": [
                    "Videos"
                ],
                "summary": "Show Video",
                "operationId": "4f4def364859d48ccc6d5ee96c7e40f7",
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "data": {
                                            "type": "array",
                                            "items": {
                                                "properties": {
                                                    "id": {
                                                        "type": "number",
                                                        "example": "1"
                                                    },
                                                    "title": {
                                                        "type": "string",
                                                        "example": "title"
                                                    },
                                                    "folder": {
                                                        "type": "string",
                                                        "example": "folder"
                                                    },
                                                    "url": {
                                                        "type": "string",
                                                        "example": "url"
                                                    },
                                                    "cdn_type": {
                                                        "type": "number",
                                                        "example": 1
                                                    },
                                                    "user_id": {
                                                        "type": "number",
                                                        "example": 1
                                                    },
                                                    "status": {
                                                        "type": "number",
                                                        "example": 0
                                                    },
                                                    "user": {
                                                        "properties": {
                                                            "id": {
                                                                "type": "number",
                                                                "example": 1
                                                            },
                                                            "name": {
                                                                "type": "string",
                                                                "example": "string"
                                                            }
                                                        },
                                                        "type": "object"
                                                    }
                                                },
                                                "type": "object"
                                            }
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            },
            "post": {
                "tags": [
                    "Videos"
                ],
                "summary": "Store Video",
                "operationId": "93bb2af8fe8c1f687ff70534789d3be2",
                "requestBody": {
                    "content": {
                        "application/json": {
                            "schema": {
                                "properties": {
                                    "title": {
                                        "type": "string",
                                        "example": "title"
                                    },
                                    "file": {
                                        "type": "file",
                                        "example": "file"
                                    },
                                    "cdn_type": {
                                        "type": "number",
                                        "example": 1
                                    }
                                },
                                "type": "object"
                            }
                        }
                    }
                },
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "success": {
                                            "type": "string",
                                            "example": true
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    },
                    "400": {
                        "description": "invalid",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "success": {
                                            "type": "string",
                                            "example": false
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/api/video/{id}": {
            "delete": {
                "tags": [
                    "Videos"
                ],
                "summary": "Delete Video",
                "operationId": "43ab670894d1b991024ffe0389de21d4",
                "parameters": [
                    {
                        "name": "id",
                        "in": "path",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "success",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "properties": {
                                        "success": {
                                            "type": "string",
                                            "example": "true"
                                        }
                                    },
                                    "type": "object"
                                }
                            }
                        }
                    }
                }
            }
        }
    },
    "security": [
        {
            "passport": []
        }
    ],
    "components": {
        "securitySchemes": {
            "passport": {
                "type": "apiKey",
                "description": "Laravel passport oauth2 security.",
                "in": "header",
                "name": "Authorization",
                "scheme": "http",
                "flows": {
                    "password": {
                        "authorizationUrl": "http://localhost/oauth/authorize",
                        "tokenUrl": "http://localhost/oauth/token",
                        "refreshUrl": "http://localhost/token/refresh",
                        "scopes": []
                    }
                }
            },
            "sanctum": []
        }
    }
}