{"id":231,"date":"2026-01-29T11:47:52","date_gmt":"2026-01-29T11:47:52","guid":{"rendered":"https:\/\/staymind.shop\/?p=231"},"modified":"2026-01-29T11:47:54","modified_gmt":"2026-01-29T11:47:54","slug":"paper-of-database-department-of-computer-science-and-software-engineering","status":"publish","type":"post","link":"https:\/\/staymind.shop\/?p=231","title":{"rendered":"Paper Of Database Department Of Computer Science and Software Engineering"},"content":{"rendered":"\n<p>Let&#8217;s get this straight:&nbsp;<strong>Database Systems<\/strong>&nbsp;is not about &#8220;making spreadsheets bigger.&#8221; It&#8217;s the foundational discipline of turning chaotic, raw data into a&nbsp;<strong>reliable, consistent, and efficient<\/strong>&nbsp;source of truth for entire organizations. This past paper is your blueprint exam. It tests whether you can design a robust data architecture, protect its integrity, and retrieve complex insights with precision\u2014all while juggling the demands of multiple users and potential system crashes.<\/p>\n\n\n\n<p>Forget simple file storage. This is about engineering systems that can handle transactions from millions of users, guarantee that your bank balance is correct, and answer complex questions in milliseconds. It&#8217;s where theory meets industrial-scale practice.<\/p>\n\n\n\n<p><strong>What This Paper Actually Architects: Your Data Engineering Judgment<\/strong><\/p>\n\n\n\n<p><strong>1. The Foundation: Modeling the Real World<\/strong><br>The journey begins with abstraction. You must translate a messy business problem into a clean, logical model.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Entity-Relationship (ER) Modeling:<\/strong>\u00a0You&#8217;ll be given a narrative (e.g., &#8220;a university needs to track students, courses, and professors&#8221;) and must produce a precise ER diagram with entities, attributes, keys, and relationships (cardinalities: one-to-one, one-to-many, many-to-many). This is the crucial bridge between human understanding and machine structure.<\/li>\n\n\n\n<li><strong>Relational Model:<\/strong>\u00a0Translating your ER diagram into a set of\u00a0<strong>normalized tables<\/strong>. You&#8217;ll define\u00a0<strong>schemas<\/strong>,\u00a0<strong>primary keys<\/strong>, and\u00a0<strong>foreign keys<\/strong>\u00a0to enforce relationships.<\/li>\n<\/ul>\n\n\n\n<p><strong>2. The Heart: Structured Query Language (SQL)<\/strong><br>This is the lingua franca of data. You won&#8217;t just write basic queries; you&#8217;ll craft sophisticated ones that demonstrate deep understanding.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Data Manipulation Language (DML):<\/strong>\u00a0Mastery of\u00a0<code>SELECT<\/code>\u00a0statements with complex\u00a0<code>JOINs<\/code>\u00a0(INNER, LEFT, RIGHT, FULL), nested subqueries, and set operations (UNION, INTERSECT).<\/li>\n\n\n\n<li><strong>Aggregation &amp; Analysis:<\/strong>\u00a0Using\u00a0<code>GROUP BY<\/code>,\u00a0<code>HAVING<\/code>, and aggregate functions (<code>COUNT<\/code>,\u00a0<code>SUM<\/code>,\u00a0<code>AVG<\/code>,\u00a0<code>MAX<\/code>,\u00a0<code>MIN<\/code>) to generate insights from data.<\/li>\n\n\n\n<li><strong>Data Definition Language (DDL):<\/strong>\u00a0Writing\u00a0<code>CREATE TABLE<\/code>\u00a0statements that enforce constraints (<code>NOT NULL<\/code>,\u00a0<code>UNIQUE<\/code>,\u00a0<code>CHECK<\/code>). You&#8217;ll modify schemas with\u00a0<code>ALTER TABLE<\/code>.<\/li>\n\n\n\n<li><strong>Advanced SQL:<\/strong>\u00a0Window functions (<code>ROW_NUMBER()<\/code>,\u00a0<code>RANK()<\/code>,\u00a0<code>LEAD\/LAG<\/code>) for powerful analytical queries without collapsing rows.<\/li>\n<\/ul>\n\n\n\n<p><strong>3. The Guardian: Ensuring Integrity and Consistency<\/strong><br>A database that gives wrong answers is worse than useless. You&#8217;ll be tested on the mechanisms that protect data.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Normalization:<\/strong>\u00a0The science of eliminating redundancy and update anomalies. You&#8217;ll normalize a table to\u00a0<strong>Boyce-Codd Normal Form (BCNF)<\/strong>\u00a0or\u00a0<strong>Third Normal Form (3NF)<\/strong>, justifying each step. You&#8217;ll also know when to\u00a0<em>denormalize<\/em>\u00a0for performance.<\/li>\n\n\n\n<li><strong>Transactions &amp; ACID Properties:<\/strong>\u00a0The bedrock of reliability.\n<ul class=\"wp-block-list\">\n<li><strong>Atomicity:<\/strong>\u00a0All or nothing. Implemented via\u00a0<strong>commit<\/strong>\u00a0and\u00a0<strong>rollback<\/strong>.<\/li>\n\n\n\n<li><strong>Consistency:<\/strong>\u00a0Transactions leave the database in a valid state.<\/li>\n\n\n\n<li><strong>Isolation:<\/strong>\u00a0Concurrent transactions don&#8217;t interfere. You&#8217;ll explain\u00a0<strong>isolation levels<\/strong>\u00a0(Read Uncommitted, Read Committed, Repeatable Read, Serializable) and their trade-offs between consistency and performance.<\/li>\n\n\n\n<li><strong>Durability:<\/strong>\u00a0Once committed, it&#8217;s permanent (involving write-ahead logging).<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><strong>Concurrency Control:<\/strong>\u00a0How to manage simultaneous users. You&#8217;ll understand and apply\u00a0<strong>locking protocols<\/strong>\u00a0and identify problems like\u00a0<strong>deadlock<\/strong>.<\/li>\n<\/ul>\n\n\n\n<p><strong>4. The Brain: Optimization and Efficient Access<\/strong><br>Storing data is easy. Retrieving it quickly at scale is an art.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Indexing:<\/strong>\u00a0The single most important performance tool. You&#8217;ll explain\u00a0<strong>B+ Trees<\/strong>\u00a0(the workhorse of database indexes), how they speed up searches, and their cost on inserts\/updates. You&#8217;ll advise\u00a0<em>which<\/em>\u00a0columns to index based on query patterns.<\/li>\n\n\n\n<li><strong>Query Processing &amp; Optimization:<\/strong>\u00a0You won&#8217;t just write a query; you&#8217;ll analyze its\u00a0<strong>execution plan<\/strong>. You&#8217;ll understand how a query optimizer chooses between a\u00a0<strong>full table scan<\/strong>, an\u00a0<strong>index scan<\/strong>, and different\u00a0<strong>join algorithms<\/strong>\u00a0(Nested Loop, Hash Join, Merge Join).<\/li>\n<\/ul>\n\n\n\n<p><strong>5. The Modern Landscape: Beyond the Relational Model<\/strong><br>The paper will likely test your awareness of the broader ecosystem.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>NoSQL Databases:<\/strong>\u00a0Understanding when to use\u00a0<strong>key-value stores<\/strong>\u00a0(Redis),\u00a0<strong>document stores<\/strong>\u00a0(MongoDB),\u00a0<strong>wide-column stores<\/strong>\u00a0(Cassandra), or\u00a0<strong>graph databases<\/strong>\u00a0(Neo4j) based on the data model and access patterns.<\/li>\n\n\n\n<li><strong>Database Security:<\/strong>\u00a0Basic concepts of\u00a0<strong>authentication, authorization, and SQL injection<\/strong>\u00a0attacks (and how to prevent them with parameterized queries).<\/li>\n<\/ul>\n\n\n\n<p><strong>The Paper&#8217;s Ultimate Challenge: The Design &amp; Optimization Scenario<\/strong><br>The most demanding question is a&nbsp;<strong>mini capstone project<\/strong>:<br><em>&#8220;Design a database for an online food delivery service. Provide an ER diagram and relational schema. Write a SQL query to find the top 5 most popular restaurants in each borough last month. A critical query joining the&nbsp;<code>Orders<\/code>,&nbsp;<code>Order_Items<\/code>, and&nbsp;<code>Restaurants<\/code>&nbsp;tables is running slowly. Propose two specific, actionable strategies to optimize its performance, explaining the database principle behind each.&#8221;<\/em><br>This tests modeling, query crafting, and deep performance tuning in one integrated problem.<\/p>\n\n\n\n<p><strong>How to Conquer This Past Paper:<\/strong><\/p>\n\n\n\n<ol start=\"1\" class=\"wp-block-list\">\n<li><strong>Think in Sets.<\/strong>\u00a0SQL is a declarative language that operates on sets of rows. Shift your mindset from procedural &#8220;how to loop&#8221; to declarative &#8220;what is the desired result.&#8221;<\/li>\n\n\n\n<li><strong>Master the JOIN.<\/strong>\u00a0The vast majority of analytical power comes from correctly joining tables. Be able to visualize Venn diagrams for each JOIN type.<\/li>\n\n\n\n<li><strong>Normalize by Instinct, Denormalize by Reason.<\/strong>\u00a0Practice spotting insertion\/deletion\/update anomalies. Normalize by default, but know that a well-placed redundant column can save a costly join.<\/li>\n\n\n\n<li><strong>Trace the Transaction.<\/strong>\u00a0For concurrency questions, act out the interleaving of operations from two transactions. This reveals conflicts and deadlocks vividly.<\/li>\n\n\n\n<li><strong>Index with Purpose.<\/strong>\u00a0Remember: indexes are a trade-off. They are not magic; they are a physical design choice based on query workload.<\/li>\n<\/ol>\n\n\n\n<p>This past paper is your&nbsp;<strong>professional certification in data integrity<\/strong>. It proves you can be trusted to design the systems that hold a company&#8217;s most valuable asset\u2014its data. Passing it means you&#8217;re not just a programmer; you are a&nbsp;<strong>data architect<\/strong>&nbsp;who can build foundations that are solid, scalable, and sane.<\/p>\n\n\n\n<p><strong>Database\u00a0Sessional 1<br><\/strong><\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"765\" height=\"669\" src=\"https:\/\/staymind.shop\/wp-content\/uploads\/2026\/01\/image-82.png\" alt=\"\" class=\"wp-image-233\" srcset=\"https:\/\/staymind.shop\/wp-content\/uploads\/2026\/01\/image-82.png 765w, https:\/\/staymind.shop\/wp-content\/uploads\/2026\/01\/image-82-300x262.png 300w\" sizes=\"auto, (max-width: 765px) 100vw, 765px\" \/><\/figure>\n<\/div>\n\n\n<p><strong>Database Final Paper<\/strong><\/p>\n\n\n\n<p>Question 1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 20<\/p>\n\n\n\n<p>Table below consist of sample data for items and for salespersons who supply those items, the item no uniquely identifies different item and salesperson names uniquely identify salespersons<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td>item no<\/td><td>Item Description<\/td><td>Salespersonname<\/td><td>address<\/td><td>Unit cost<\/td><\/tr><tr><td>1234<\/td><td>Logic chip<\/td><td>Ali<\/td><td>Peoples colony<\/td><td>10<\/td><\/tr><tr><td><\/td><td><\/td><td>Hamza<\/td><td>Madina Town<\/td><td>8<\/td><\/tr><tr><td>5678<\/td><td>Memory chip<\/td><td>Nasir<\/td><td>Peoples colony<\/td><td>3<\/td><\/tr><tr><td><\/td><td><\/td><td>Asad<\/td><td>College town<\/td><td>2<\/td><\/tr><tr><td><\/td><td><\/td><td>Anjum<\/td><td>Muslim Town<\/td><td>5<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Convert this table to a relation (named item Supplier) in third normal form. Illustrate the relation with sample data in the table<\/li>\n\n\n\n<li>List the functional dependencies in item Supplier and identify a candidate key<\/li>\n\n\n\n<li>Identify each of the following an insert anomaly a delete anomaly and a modification anomaly<\/li>\n\n\n\n<li>Draw the relational schema and show the functional dependencies<\/li>\n<\/ul>\n\n\n\n<p>Question 2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (15)<\/p>\n\n\n\n<p>Using the below scenario construct the ER-Diagram, identify different entities and specify their attribute types. Show the relationship which exist between the entities. What type of relationships exists among different entities? Mention any necessary assumptions that you make.<\/p>\n\n\n\n<p>TCS is leading company for shipped different types of item all across the world because tcs have the latest data on the processing and current site of each shipped item. TCS used a firm wide product tracking information system that keep them up to date about their shipped items because shipped item are the key part of the TCS product tracking information system. Shipped items can be characterized by item number (unique), weight, dimensions, insurance amount, destination, and final delivery date. Shipped items are received into the TCS system at a single retail center. Retail centers are characterized by their type, uniqueID, and address. Shipped items make their way to their destination via one or more standard TCS transportation events (i.e., flights, truck deliveries). These transportation events are characterized by a unique schedule Number, a type (e.g, flight, truck), and a delivery Route.<\/p>\n\n\n\n<p>Question 3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (15)<\/p>\n\n\n\n<p>Consider the following tables:<\/p>\n\n\n\n<p>Order (OrderId,&nbsp;CustomerId , ProductId , Qty, Amount, SalRepId, Date)<\/p>\n\n\n\n<p>SalesRep (SalRepId,&nbsp;SalRepName, OfficeId, Title, Age, HireDate, Manager, Quota, Sales, Target) Office (OfficeId,&nbsp;City, Region, Target, Sales)<\/p>\n\n\n\n<p>Customer (&nbsp;CustomerId,&nbsp;customerName, Company, CreditLimit, Address, salRepId) Product (ProductId,&nbsp;Description, Price, Manufacturer, Qty_On_Hand)<\/p>\n\n\n\n<p>Write the SQL statements for the following queries:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>List the name and hire date of anyone with sales over 50000<\/li>\n\n\n\n<li>Show me the result if I raised each person\u2019s quota by 3 percent of their year to date sales.<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li>List the offices whose sales fall below 80 percent of target<\/li>\n\n\n\n<li>List sales people whose sales are not between 80 percent and 120 percent of the<\/li>\n\n\n\n<li>List all the customers whose name starts with \u2018A\u2019 or \u2018a\u2019<\/li>\n\n\n\n<li>List orders over 2500, including the name of the sales person who took the order and the name of the customer who placed it.<\/li>\n\n\n\n<li>List the names of sales people and their mangers(Note: Manager field contain only ID\u2019s not names<\/li>\n<\/ul>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"810\" height=\"700\" src=\"https:\/\/staymind.shop\/wp-content\/uploads\/2026\/01\/db1.jpg\" alt=\"\" class=\"wp-image-234\" srcset=\"https:\/\/staymind.shop\/wp-content\/uploads\/2026\/01\/db1.jpg 810w, https:\/\/staymind.shop\/wp-content\/uploads\/2026\/01\/db1-300x259.jpg 300w, https:\/\/staymind.shop\/wp-content\/uploads\/2026\/01\/db1-768x664.jpg 768w\" sizes=\"auto, (max-width: 810px) 100vw, 810px\" \/><\/figure>\n<\/div>\n\n\n<p><strong>Mid Term Examination 2022<\/strong><\/p>\n\n\n\n<p>Subject DataBase Systems-1 Total Time Allowed: 90 min.<\/p>\n\n\n\n<p>Q.1: Define the goals of High Level Data Model<\/p>\n\n\n\n<p>Q.2: How E-R Model helps in designing an effective database? Q.3: Describe Unary. Binary and Ternary relationship in E-R Model. Also give suitable<\/p>\n\n\n\n<p>examples.<\/p>\n\n\n\n<p>PROBLEM #1<\/p>\n\n\n\n<p>Construct an E-R diagram for a university registrar\u2019s office then transform it into the relational model. The office maintains data about each class, including the instructor, the enrollment, and the time and place of the class meetings. For each student-class pair, a grade is recorded.<\/p>\n\n\n\n<p>PROBLEM # 2<\/p>\n\n\n\n<p>Construct an E-R diagram for a hospital then transform it into the relational model with a set of patients and a set of medical doctors. A log of the various conducted tests is associated with each<\/p>\n\n\n\n<p>patient.<\/p>\n\n\n\n<p>CLO-2 Q.5:<\/p>\n\n\n\n<p>Bank(bankCode, name, address, city, state,zip, phone) Account (accNum, balance, accType, ssn, bankCode,branchNum)<\/p>\n\n\n\n<p>Customer(ssn, fname, Iname, address, city,state, zip, phone) Loan (loanNum, amount, currentBalance, loan Type, ssn,bankCode, branchNum) BankBranch(bankCode, branchNum, address, city, state, zip, phone, capital)<\/p>\n\n\n\n<p>Based on the provided schema pose the following queries in SQL. (a) Retrieve the names of all banks whose name starts with \u201cA\u201d and are in the city of<\/p>\n\n\n\n<p>\u201cBahawalpur\u201d. (b) Retrieve the ssn, first name, last name and account balance of all customers with accounts with negative balance.<\/p>\n\n\n\n<p>(c) Retrieve ssn, first name, zip code, total balance on account and total current balance of loans<\/p>\n\n\n\n<p>for all customers.<\/p>\n\n\n\n<p>(d) Retrieve bank name, branch number and total loan original amounts for all branches with<\/p>\n\n\n\n<p>capital less than 5 million.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Let&#8217;s get this straight:&nbsp;Database Systems&nbsp;is not about &#8220;making spreadsheets bigger.&#8221; It&#8217;s the foundational discipline of turning chaotic, raw data into a&nbsp;reliable, consistent, and efficient&nbsp;source of truth for entire organizations. This past paper is your blueprint exam. It tests whether you can design a robust data architecture, protect its integrity, and retrieve complex insights with precision\u2014all [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":235,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[54],"tags":[55,6,7,8],"class_list":["post-231","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-database","tag-database","tag-paper","tag-past","tag-past_paper"],"_links":{"self":[{"href":"https:\/\/staymind.shop\/index.php?rest_route=\/wp\/v2\/posts\/231","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/staymind.shop\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/staymind.shop\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/staymind.shop\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/staymind.shop\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=231"}],"version-history":[{"count":1,"href":"https:\/\/staymind.shop\/index.php?rest_route=\/wp\/v2\/posts\/231\/revisions"}],"predecessor-version":[{"id":236,"href":"https:\/\/staymind.shop\/index.php?rest_route=\/wp\/v2\/posts\/231\/revisions\/236"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/staymind.shop\/index.php?rest_route=\/wp\/v2\/media\/235"}],"wp:attachment":[{"href":"https:\/\/staymind.shop\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=231"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/staymind.shop\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=231"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/staymind.shop\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=231"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}