{
 	"$schema": "https://schemas.wp.org/trunk/block.json",
 	"apiVersion": 3,
-	"name": "current-user-posts/current-user-posts",
+	"name": "sagiriswd/current-user-posts",
 	"version": "0.1.0",
 	"title": "Current User Posts",
 	"category": "theme",
-	"icon": "smiley",
-	"description": "Example block scaffolded with Create Block tool.",
-	"example": {},
+	"icon": "admin-users",
+	"description": "Display the posts created by the current user.",
+	"allowedBlocks": [ "core/query" ],
+	"attributes": {
+		"currentUserId": {
+			"type": "integer",
+			"default": 0
+		},
+		"namespace": {
+			"type": "string",
+			"default": "sagiriswd/current-user-posts"
+		}
+	},
 	"supports": {
-		"html": false
+		"html": false,
+		"layout": true,
+		"align": true,
+		"ariaLabel": true
 	},
+	"keywords": [ "my posts", "current user posts" ],
 	"textdomain": "current-user-posts",
 	"editorScript": "file:./index.js",
 	"editorStyle": "file:./index.css",
 	"style": "file:./style-index.css",
-	"render": "file:./render.php",
-	"viewScript": "file:./view.js"
+	"render": "file:./render.php"
 }