{"id":120,"date":"2025-07-04T16:06:26","date_gmt":"2025-07-04T16:06:26","guid":{"rendered":"https:\/\/bronnsoftware.co.za\/main\/?p=120"},"modified":"2025-07-04T16:06:26","modified_gmt":"2025-07-04T16:06:26","slug":"understanding-jwt-tokens","status":"publish","type":"post","link":"https:\/\/bronnsoftware.co.za\/main\/index.php\/2025\/07\/04\/understanding-jwt-tokens\/","title":{"rendered":"Understanding JWT Tokens"},"content":{"rendered":"\n<p><\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h1 class=\"wp-block-heading\">\ud83d\udd10 Understanding JWT Tokens: What They Are and How They Work<\/h1>\n\n\n\n<p>In today\u2019s digital world, securing user authentication and information exchange is crucial. Whether you&#8217;re building a web app, mobile app, or API service, <strong>JWT (JSON Web Token)<\/strong> has become a popular tool for handling secure authentication. But what exactly is a JWT token, and how does it work? Let\u2019s break it down.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">\ud83e\udde9 What is a JWT?<\/h2>\n\n\n\n<p>JWT stands for <strong>JSON Web Token<\/strong>. It\u2019s a compact, URL-safe token format used to represent claims between two parties. JWTs are widely used in <strong>authentication<\/strong> and <strong>authorization<\/strong> scenarios.<\/p>\n\n\n\n<p>A JWT is a <strong>string<\/strong> made up of <strong>three parts<\/strong>, separated by dots:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>xxxxx.yyyyy.zzzzz\n<\/code><\/pre>\n\n\n\n<p>These parts are:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Header<\/strong>: Metadata about the token (usually includes the signing algorithm and token type).<\/li>\n\n\n\n<li><strong>Payload<\/strong>: The actual data or claims (e.g., user ID, roles, permissions).<\/li>\n\n\n\n<li><strong>Signature<\/strong>: A cryptographic signature to verify the integrity of the token.<\/li>\n<\/ol>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">\ud83d\udd0d Anatomy of a JWT<\/h2>\n\n\n\n<p>Let\u2019s look at a decoded JWT:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">1. Header<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n  \"alg\": \"HS256\",\n  \"typ\": \"JWT\"\n}\n<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code>alg<\/code> = the algorithm used to sign the token (e.g., HS256 or RS256)<\/li>\n\n\n\n<li><code>typ<\/code> = the type of token, which is always &#8220;JWT&#8221;<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">2. Payload<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n  \"sub\": \"1234567890\",\n  \"name\": \"Jane Doe\",\n  \"admin\": true,\n  \"exp\": 1725230000\n}\n<\/code><\/pre>\n\n\n\n<p>This is the data you&#8217;re passing along. <strong>Note<\/strong>: this data is <strong>not encrypted<\/strong>, just base64-encoded\u2014so don&#8217;t put sensitive info here.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">3. Signature<\/h3>\n\n\n\n<p>To generate the signature:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>HMACSHA256(\n  base64UrlEncode(header) + \".\" + base64UrlEncode(payload),\n  secret\n)\n<\/code><\/pre>\n\n\n\n<p>The signature ensures the token wasn\u2019t tampered with.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">\u2705 Why Use JWT?<\/h2>\n\n\n\n<p>Here are some reasons JWTs are widely adopted:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Stateless Authentication<\/strong>: No need to store session data on the server.<\/li>\n\n\n\n<li><strong>Compact<\/strong>: Easily passed in URLs, headers, or inside cookies.<\/li>\n\n\n\n<li><strong>Cross-Platform<\/strong>: Works with web, mobile, and desktop clients.<\/li>\n\n\n\n<li><strong>Signed &amp; Verifiable<\/strong>: Ensures data integrity.<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">\ud83d\udee1\ufe0f Common Use Cases<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Authentication<\/strong>: After login, the server generates a JWT and sends it to the client. The client then includes the token in each subsequent request.<\/li>\n\n\n\n<li><strong>Authorization<\/strong>: Roles and permissions in the payload help APIs enforce access control.<\/li>\n\n\n\n<li><strong>Single Sign-On (SSO)<\/strong>: JWTs are ideal for SSO due to their portability and ease of verification.<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">\u26a0\ufe0f JWT Pitfalls to Avoid<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>\u274c <strong>Don&#8217;t store sensitive data<\/strong> in the payload \u2014 it&#8217;s not encrypted.<\/li>\n\n\n\n<li>\ud83d\udd10 <strong>Always use HTTPS<\/strong> \u2014 to prevent token interception.<\/li>\n\n\n\n<li>\u231b <strong>Set expiration (<code>exp<\/code>)<\/strong> \u2014 so tokens don\u2019t live forever.<\/li>\n\n\n\n<li>\ud83e\uddef <strong>Handle revocation<\/strong> \u2014 JWTs are stateless, so token revocation requires strategies (e.g., blocklists).<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">\ud83d\udc69\u200d\ud83d\udcbb A Simple Flow<\/h2>\n\n\n\n<ol class=\"wp-block-list\">\n<li>User logs in with credentials.<\/li>\n\n\n\n<li>Server verifies the credentials and returns a JWT.<\/li>\n\n\n\n<li>Client stores the token (usually in memory or secure storage).<\/li>\n\n\n\n<li>Client sends the token in the <code>Authorization<\/code> header: <code>Authorization: Bearer &lt;token><\/code><\/li>\n\n\n\n<li>Server verifies the token and responds with data if valid.<\/li>\n<\/ol>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">\ud83d\udee0\ufe0f JWT Tools &amp; Libraries<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Node.js<\/strong>: <a href=\"https:\/\/github.com\/auth0\/node-jsonwebtoken\"><code>jsonwebtoken<\/code><\/a><\/li>\n\n\n\n<li><strong>Python<\/strong>: <a href=\"https:\/\/github.com\/jpadilla\/pyjwt\"><code>pyjwt<\/code><\/a><\/li>\n\n\n\n<li><strong>Java<\/strong>: <a href=\"https:\/\/github.com\/jwtk\/jjwt\"><code>jjwt<\/code><\/a><\/li>\n\n\n\n<li><strong>Online debugger<\/strong>: <a href=\"https:\/\/jwt.io\/\">jwt.io<\/a><\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">\ud83d\ude80 Final Thoughts<\/h2>\n\n\n\n<p>JWTs provide a clean, stateless way to handle authentication and authorization across distributed systems. When used correctly, they can significantly simplify your security infrastructure. But like any tool, they come with trade-offs \u2014 so be sure to understand their strengths and limitations before rolling them out.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<p>Have questions about implementing JWT in your app? Drop them in the comments below or reach out \u2014 let\u2019s talk security! \ud83d\udd10<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\ud83d\udd10 Understanding JWT Tokens: What They Are and How They Work In today\u2019s digital world, securing user authentication and information exchange is crucial. Whether you&#8217;re building a web app, mobile app, or API service, JWT (JSON Web Token) has become a popular tool for handling secure authentication. But what exactly is a JWT token, and [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":118,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-120","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-uncategorized"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Understanding JWT Tokens - Bronn Software<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/bronnsoftware.co.za\/main\/index.php\/2025\/07\/04\/understanding-jwt-tokens\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Understanding JWT Tokens - Bronn Software\" \/>\n<meta property=\"og:description\" content=\"\ud83d\udd10 Understanding JWT Tokens: What They Are and How They Work In today\u2019s digital world, securing user authentication and information exchange is crucial. Whether you&#8217;re building a web app, mobile app, or API service, JWT (JSON Web Token) has become a popular tool for handling secure authentication. But what exactly is a JWT token, and [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/bronnsoftware.co.za\/main\/index.php\/2025\/07\/04\/understanding-jwt-tokens\/\" \/>\n<meta property=\"og:site_name\" content=\"Bronn Software\" \/>\n<meta property=\"article:published_time\" content=\"2025-07-04T16:06:26+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/bronnsoftware.co.za\/main\/wp-content\/uploads\/2025\/07\/jwt-flower.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"240\" \/>\n\t<meta property=\"og:image:height\" content=\"240\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/bronnsoftware.co.za\\\/main\\\/index.php\\\/2025\\\/07\\\/04\\\/understanding-jwt-tokens\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/bronnsoftware.co.za\\\/main\\\/index.php\\\/2025\\\/07\\\/04\\\/understanding-jwt-tokens\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/bronnsoftware.co.za\\\/main\\\/#\\\/schema\\\/person\\\/e109ea28fdcf717ef65c0db5304ae80c\"},\"headline\":\"Understanding JWT Tokens\",\"datePublished\":\"2025-07-04T16:06:26+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/bronnsoftware.co.za\\\/main\\\/index.php\\\/2025\\\/07\\\/04\\\/understanding-jwt-tokens\\\/\"},\"wordCount\":491,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/bronnsoftware.co.za\\\/main\\\/index.php\\\/2025\\\/07\\\/04\\\/understanding-jwt-tokens\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/bronnsoftware.co.za\\\/main\\\/wp-content\\\/uploads\\\/2025\\\/07\\\/jwt-flower.webp\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/bronnsoftware.co.za\\\/main\\\/index.php\\\/2025\\\/07\\\/04\\\/understanding-jwt-tokens\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/bronnsoftware.co.za\\\/main\\\/index.php\\\/2025\\\/07\\\/04\\\/understanding-jwt-tokens\\\/\",\"url\":\"https:\\\/\\\/bronnsoftware.co.za\\\/main\\\/index.php\\\/2025\\\/07\\\/04\\\/understanding-jwt-tokens\\\/\",\"name\":\"Understanding JWT Tokens - Bronn Software\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/bronnsoftware.co.za\\\/main\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/bronnsoftware.co.za\\\/main\\\/index.php\\\/2025\\\/07\\\/04\\\/understanding-jwt-tokens\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/bronnsoftware.co.za\\\/main\\\/index.php\\\/2025\\\/07\\\/04\\\/understanding-jwt-tokens\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/bronnsoftware.co.za\\\/main\\\/wp-content\\\/uploads\\\/2025\\\/07\\\/jwt-flower.webp\",\"datePublished\":\"2025-07-04T16:06:26+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/bronnsoftware.co.za\\\/main\\\/#\\\/schema\\\/person\\\/e109ea28fdcf717ef65c0db5304ae80c\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/bronnsoftware.co.za\\\/main\\\/index.php\\\/2025\\\/07\\\/04\\\/understanding-jwt-tokens\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/bronnsoftware.co.za\\\/main\\\/index.php\\\/2025\\\/07\\\/04\\\/understanding-jwt-tokens\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/bronnsoftware.co.za\\\/main\\\/index.php\\\/2025\\\/07\\\/04\\\/understanding-jwt-tokens\\\/#primaryimage\",\"url\":\"https:\\\/\\\/bronnsoftware.co.za\\\/main\\\/wp-content\\\/uploads\\\/2025\\\/07\\\/jwt-flower.webp\",\"contentUrl\":\"https:\\\/\\\/bronnsoftware.co.za\\\/main\\\/wp-content\\\/uploads\\\/2025\\\/07\\\/jwt-flower.webp\",\"width\":240,\"height\":240},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/bronnsoftware.co.za\\\/main\\\/index.php\\\/2025\\\/07\\\/04\\\/understanding-jwt-tokens\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/bronnsoftware.co.za\\\/main\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Understanding JWT Tokens\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/bronnsoftware.co.za\\\/main\\\/#website\",\"url\":\"https:\\\/\\\/bronnsoftware.co.za\\\/main\\\/\",\"name\":\"Bronn Software\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/bronnsoftware.co.za\\\/main\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/bronnsoftware.co.za\\\/main\\\/#\\\/schema\\\/person\\\/e109ea28fdcf717ef65c0db5304ae80c\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b0cd80908edeefb49835be4fa089c22acb8734553cac0bf8284eacdc57de079b?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b0cd80908edeefb49835be4fa089c22acb8734553cac0bf8284eacdc57de079b?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b0cd80908edeefb49835be4fa089c22acb8734553cac0bf8284eacdc57de079b?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"https:\\\/\\\/bronnsoftware.co.za\\\/main\"],\"url\":\"https:\\\/\\\/bronnsoftware.co.za\\\/main\\\/index.php\\\/author\\\/admin_6mf4e2oh\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Understanding JWT Tokens - Bronn Software","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/bronnsoftware.co.za\/main\/index.php\/2025\/07\/04\/understanding-jwt-tokens\/","og_locale":"en_US","og_type":"article","og_title":"Understanding JWT Tokens - Bronn Software","og_description":"\ud83d\udd10 Understanding JWT Tokens: What They Are and How They Work In today\u2019s digital world, securing user authentication and information exchange is crucial. Whether you&#8217;re building a web app, mobile app, or API service, JWT (JSON Web Token) has become a popular tool for handling secure authentication. But what exactly is a JWT token, and [&hellip;]","og_url":"https:\/\/bronnsoftware.co.za\/main\/index.php\/2025\/07\/04\/understanding-jwt-tokens\/","og_site_name":"Bronn Software","article_published_time":"2025-07-04T16:06:26+00:00","og_image":[{"width":240,"height":240,"url":"https:\/\/bronnsoftware.co.za\/main\/wp-content\/uploads\/2025\/07\/jwt-flower.webp","type":"image\/webp"}],"author":"admin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"admin","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/bronnsoftware.co.za\/main\/index.php\/2025\/07\/04\/understanding-jwt-tokens\/#article","isPartOf":{"@id":"https:\/\/bronnsoftware.co.za\/main\/index.php\/2025\/07\/04\/understanding-jwt-tokens\/"},"author":{"name":"admin","@id":"https:\/\/bronnsoftware.co.za\/main\/#\/schema\/person\/e109ea28fdcf717ef65c0db5304ae80c"},"headline":"Understanding JWT Tokens","datePublished":"2025-07-04T16:06:26+00:00","mainEntityOfPage":{"@id":"https:\/\/bronnsoftware.co.za\/main\/index.php\/2025\/07\/04\/understanding-jwt-tokens\/"},"wordCount":491,"commentCount":0,"image":{"@id":"https:\/\/bronnsoftware.co.za\/main\/index.php\/2025\/07\/04\/understanding-jwt-tokens\/#primaryimage"},"thumbnailUrl":"https:\/\/bronnsoftware.co.za\/main\/wp-content\/uploads\/2025\/07\/jwt-flower.webp","inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/bronnsoftware.co.za\/main\/index.php\/2025\/07\/04\/understanding-jwt-tokens\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/bronnsoftware.co.za\/main\/index.php\/2025\/07\/04\/understanding-jwt-tokens\/","url":"https:\/\/bronnsoftware.co.za\/main\/index.php\/2025\/07\/04\/understanding-jwt-tokens\/","name":"Understanding JWT Tokens - Bronn Software","isPartOf":{"@id":"https:\/\/bronnsoftware.co.za\/main\/#website"},"primaryImageOfPage":{"@id":"https:\/\/bronnsoftware.co.za\/main\/index.php\/2025\/07\/04\/understanding-jwt-tokens\/#primaryimage"},"image":{"@id":"https:\/\/bronnsoftware.co.za\/main\/index.php\/2025\/07\/04\/understanding-jwt-tokens\/#primaryimage"},"thumbnailUrl":"https:\/\/bronnsoftware.co.za\/main\/wp-content\/uploads\/2025\/07\/jwt-flower.webp","datePublished":"2025-07-04T16:06:26+00:00","author":{"@id":"https:\/\/bronnsoftware.co.za\/main\/#\/schema\/person\/e109ea28fdcf717ef65c0db5304ae80c"},"breadcrumb":{"@id":"https:\/\/bronnsoftware.co.za\/main\/index.php\/2025\/07\/04\/understanding-jwt-tokens\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/bronnsoftware.co.za\/main\/index.php\/2025\/07\/04\/understanding-jwt-tokens\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/bronnsoftware.co.za\/main\/index.php\/2025\/07\/04\/understanding-jwt-tokens\/#primaryimage","url":"https:\/\/bronnsoftware.co.za\/main\/wp-content\/uploads\/2025\/07\/jwt-flower.webp","contentUrl":"https:\/\/bronnsoftware.co.za\/main\/wp-content\/uploads\/2025\/07\/jwt-flower.webp","width":240,"height":240},{"@type":"BreadcrumbList","@id":"https:\/\/bronnsoftware.co.za\/main\/index.php\/2025\/07\/04\/understanding-jwt-tokens\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/bronnsoftware.co.za\/main\/"},{"@type":"ListItem","position":2,"name":"Understanding JWT Tokens"}]},{"@type":"WebSite","@id":"https:\/\/bronnsoftware.co.za\/main\/#website","url":"https:\/\/bronnsoftware.co.za\/main\/","name":"Bronn Software","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/bronnsoftware.co.za\/main\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/bronnsoftware.co.za\/main\/#\/schema\/person\/e109ea28fdcf717ef65c0db5304ae80c","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/b0cd80908edeefb49835be4fa089c22acb8734553cac0bf8284eacdc57de079b?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/b0cd80908edeefb49835be4fa089c22acb8734553cac0bf8284eacdc57de079b?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b0cd80908edeefb49835be4fa089c22acb8734553cac0bf8284eacdc57de079b?s=96&d=mm&r=g","caption":"admin"},"sameAs":["https:\/\/bronnsoftware.co.za\/main"],"url":"https:\/\/bronnsoftware.co.za\/main\/index.php\/author\/admin_6mf4e2oh\/"}]}},"_links":{"self":[{"href":"https:\/\/bronnsoftware.co.za\/main\/index.php\/wp-json\/wp\/v2\/posts\/120","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/bronnsoftware.co.za\/main\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/bronnsoftware.co.za\/main\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/bronnsoftware.co.za\/main\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/bronnsoftware.co.za\/main\/index.php\/wp-json\/wp\/v2\/comments?post=120"}],"version-history":[{"count":1,"href":"https:\/\/bronnsoftware.co.za\/main\/index.php\/wp-json\/wp\/v2\/posts\/120\/revisions"}],"predecessor-version":[{"id":121,"href":"https:\/\/bronnsoftware.co.za\/main\/index.php\/wp-json\/wp\/v2\/posts\/120\/revisions\/121"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/bronnsoftware.co.za\/main\/index.php\/wp-json\/wp\/v2\/media\/118"}],"wp:attachment":[{"href":"https:\/\/bronnsoftware.co.za\/main\/index.php\/wp-json\/wp\/v2\/media?parent=120"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/bronnsoftware.co.za\/main\/index.php\/wp-json\/wp\/v2\/categories?post=120"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/bronnsoftware.co.za\/main\/index.php\/wp-json\/wp\/v2\/tags?post=120"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}