{"id":61,"date":"2006-12-05T17:00:22","date_gmt":"2006-12-05T08:00:22","guid":{"rendered":"https:\/\/wp-78qb7hnp.pistolfly.jp\/weblog\/2006\/12\/schemayml-syntax.html"},"modified":"2006-12-05T17:00:22","modified_gmt":"2006-12-05T08:00:22","slug":"schemayml-syntax","status":"publish","type":"post","link":"https:\/\/www.pistolfly.com\/weblog\/2006\/12\/schemayml-syntax.html","title":{"rendered":"schema.yml syntax"},"content":{"rendered":"<p><a href=\"http:\/\/www.symfony-project.com\/book\/trunk\/model\">http:\/\/www.symfony-project.com\/book\/trunk\/model<\/a><br \/>\n<strong>databse.yml<\/strong><br \/>\nprod:<br \/>\n &nbsp;propel:<br \/>\n &nbsp; &nbsp;param:<br \/>\n &nbsp; &nbsp; &nbsp;host: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  &nbsp;mydataserver<br \/>\n &nbsp; &nbsp; &nbsp;username: &nbsp; &nbsp; &nbsp; &nbsp;  &nbsp;myusername<br \/>\n &nbsp; &nbsp; &nbsp;password: &nbsp; &nbsp; &nbsp; &nbsp;  &nbsp;xxxxxxxxxx<br \/>\nall:<br \/>\n &nbsp;propel:<br \/>\n &nbsp; &nbsp;class: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;sfPropelDatabase<br \/>\n &nbsp; &nbsp;param:<br \/>\n &nbsp; &nbsp; &nbsp;phptype: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;mysql<br \/>\n &nbsp; &nbsp; &nbsp;host: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  &nbsp;localhost<br \/>\n &nbsp; &nbsp; &nbsp;database: &nbsp; &nbsp; &nbsp; &nbsp;  &nbsp;blog<br \/>\n &nbsp; &nbsp; &nbsp;username: &nbsp; &nbsp; &nbsp; &nbsp;  &nbsp;root<br \/>\n &nbsp; &nbsp; &nbsp;password:<br \/>\n &nbsp; &nbsp; &nbsp;compat_assoc_lower: true<br \/>\n &nbsp; &nbsp; &nbsp;# datasource: &nbsp; &nbsp;  &nbsp;propel<br \/>\n &nbsp; &nbsp; &nbsp;# encoding: &nbsp; &nbsp; &nbsp;  &nbsp;utf8<br \/>\n &nbsp; &nbsp; &nbsp;# persistent: &nbsp; &nbsp;  &nbsp;true<br \/>\n<strong>schema.yml basic<\/strong><br \/>\npropel:<br \/>\n &nbsp;blog_article:<br \/>\n &nbsp; &nbsp;_attributes: { phpName: Article }<br \/>\n &nbsp; &nbsp;id:<br \/>\n &nbsp; &nbsp;title: &nbsp; &nbsp;  &nbsp;varchar(255)<br \/>\n &nbsp; &nbsp;content: &nbsp;  &nbsp;longvarchar<br \/>\n &nbsp; &nbsp;created_at:<br \/>\n &nbsp;blog_comment:<br \/>\n &nbsp; &nbsp;_attributes: { phpName: Comment }<br \/>\n &nbsp; &nbsp;id:<br \/>\n &nbsp; &nbsp;article_id:<br \/>\n &nbsp; &nbsp;author: &nbsp; &nbsp; &nbsp;varchar(255)<br \/>\n &nbsp; &nbsp;content: &nbsp;  &nbsp;longvarchar<br \/>\n &nbsp; &nbsp;created_at:<br \/>\npropel:<br \/>\n &nbsp;blog_article:<br \/>\n &nbsp; &nbsp;id: &nbsp; &nbsp;  &nbsp;{ type: integer, required: true, primaryKey: true, autoincrement: true }<br \/>\n &nbsp; &nbsp;name: &nbsp;  &nbsp;{ type: varchar , size: 50, default: foobar, index: true }<br \/>\n &nbsp; &nbsp;group_id: { type: integer, foreignTable: db_group, foreignReference: id, onDelete: cascade }<br \/>\n<strong>schema.yml syntax detail<\/strong><br \/>\nThe column parameters are:<\/p>\n<ul>\n<li><strong>type<\/strong>: Propel column type. See Propel list of types for more details. The compact syntax (varchar(50)) is also supported as a type value.<\/li>\n<li><strong>size<\/strong>: for VARCHAR type columns, the size of the string. Note that a column defined as varchar(50) in basic syntax is defined as { type: varchar , size: 50 } in extended syntax.<\/li>\n<li><strong>required<\/strong>: false by default, set it to true if you want the column to be required<\/li>\n<li><strong>default<\/strong>: default value<\/li>\n<li><strong>primaryKey<\/strong>: boolean, to be set to true for primary keys<\/li>\n<li><strong>autoincrement<\/strong>: boolean, to be set to true for columns of type integer that need to be auto-increment<\/li>\n<li><strong>sequence<\/strong>: sequence name for databases using sequences for auto-increment columns (e.g. PostgreSQL or Oracle)<\/li>\n<li><strong>index<\/strong>: boolean, to be set to true if you want a simple index or to unique if you want a unique index to be created on the column<\/li>\n<li><strong>foreignTable<\/strong>: to create a foreign key to another table.<\/li>\n<li><strong>foreignReference<\/strong>: the name of the related column if a foreign key is defined via foreignTable<\/li>\n<li><strong>onDelete<\/strong>: if set to cascade for a foreign key, records in this table are deleted when a related record in the foreign table is deleted.<\/li>\n<li><strong>isCulture<\/strong>: to be set to true for culture columns in localized content tables (see the internationalization chapter)<\/li>\n<\/ul>\n<p><strong>Type<\/strong><br \/>\nboolean<br \/>\ninteger<br \/>\nfloat<br \/>\ndate &gt;= 1970-01-01<br \/>\nbu_date<br \/>\ntimestamp &gt;= 1970-01-01<br \/>\nbu_timestamp<br \/>\nvarchar(size) &lt;= 256 characters<br \/>\nlongvarchar &lt;= 65kb<br \/>\n<strong>Schema conventions<\/strong><br \/>\nEmpty columns called id are considered to be primary keys.<br \/>\nEmpty column ending with _id are considered to be foreign keys, and the related table is automatically determined according to the first part of the column name.<br \/>\nEmpty columns called created_at are automatically set to the timestamp type.<br \/>\nFor all these columns, you don't need to specify any type, since symfony will deduce their format from their name.<br \/>\n<strong>Foreign key<\/strong><br \/>\n &nbsp; &nbsp;_foreign_keys:<br \/>\n &nbsp; &nbsp; &nbsp;my_foreign_key:<br \/>\n &nbsp; &nbsp; &nbsp; &nbsp;foreign_table: db_user<br \/>\n &nbsp; &nbsp; &nbsp; &nbsp;onDelete: &nbsp; &nbsp; &nbsp;cascade<br \/>\n &nbsp; &nbsp; &nbsp; &nbsp;references:<br \/>\n &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;- { local: user_id, foreign: id }<br \/>\n &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;- { local: post_id, foreign: id }<br \/>\n<strong>Index<\/strong><br \/>\npropel:<br \/>\n &nbsp;blog_article:<br \/>\n &nbsp; &nbsp;id:<br \/>\n &nbsp; &nbsp;title: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;varchar(50)<br \/>\n &nbsp; &nbsp;created_at:<br \/>\n &nbsp; &nbsp;_indexes:<br \/>\n &nbsp; &nbsp; &nbsp;my_index: &nbsp; &nbsp;  &nbsp;[title, user_id]<br \/>\n &nbsp; &nbsp;_uniques:<br \/>\n &nbsp; &nbsp; &nbsp;my_other_index: [created_at]<br \/>\n<strong>schema.xml<\/strong><br \/>\n&lt;?xml version=\"1.0\" encoding=\"UTF-8\"?&gt;<br \/>\n&nbsp;&lt;database name=\"propel\" defaultIdMethod=\"native\" noxsd=\"true\"&gt;<br \/>\n &nbsp; &nbsp;&lt;table name=\"blog_article\" phpName=\"Article\"&gt;<br \/>\n &nbsp; &nbsp; &nbsp;&lt;column name=\"id\" type=\"integer\" required=\"true\" primaryKey=\"true\" autoIncrement=\"true\" \/&gt;<br \/>\n &nbsp; &nbsp; &nbsp;&lt;column name=\"title\" type=\"varchar\" size=\"255\" \/&gt;<br \/>\n &nbsp; &nbsp; &nbsp;&lt;column name=\"content\" type=\"longvarchar\" \/&gt;<br \/>\n &nbsp; &nbsp; &nbsp;&lt;column name=\"created_at\" type=\"timestamp\" \/&gt;<br \/>\n &nbsp; &nbsp;&lt;\/table&gt;<br \/>\n &nbsp; &nbsp;&lt;table name=\"blog_comment\" phpName=\"Comment\"&gt;<br \/>\n &nbsp; &nbsp; &nbsp;&lt;column name=\"id\" type=\"integer\" required=\"true\" primaryKey=\"true\" autoIncrement=\"true\" \/&gt;<br \/>\n &nbsp; &nbsp; &nbsp;&lt;column name=\"article_id\" type=\"integer\" \/&gt;<br \/>\n &nbsp; &nbsp; &nbsp;&lt;foreign-key foreignTable=\"blog_article\"&gt;<br \/>\n &nbsp; &nbsp; &nbsp; &nbsp;&lt;reference local=\"article_id\" foreign=\"id\"\/&gt;<br \/>\n &nbsp; &nbsp; &nbsp;&lt;\/foreign-key&gt;<br \/>\n &nbsp; &nbsp; &nbsp;&lt;column name=\"author\" type=\"varchar\" size=\"255\" \/&gt;<br \/>\n &nbsp; &nbsp; &nbsp;&lt;column name=\"content\" type=\"longvarchar\" \/&gt;<br \/>\n &nbsp; &nbsp; &nbsp;&lt;column name=\"created_at\" type=\"timestamp\" \/&gt;<br \/>\n &nbsp; &nbsp;&lt;\/table&gt;<br \/>\n&nbsp;&lt;\/database&gt;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>http:\/\/www.symfony-project.com\/book\/trunk\/model databse.yml prod: &nbsp;propel: &nbsp; &nbsp;param: &nbsp; &#038;nb &hellip; <a href=\"https:\/\/www.pistolfly.com\/weblog\/2006\/12\/schemayml-syntax.html\" class=\"more-link\">\u7d9a\u304d\u3092\u8aad\u3080 <span class=\"screen-reader-text\">schema.yml syntax<\/span> <span class=\"meta-nav\">&rarr;<\/span><\/a><\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_locale":"","_original_post":"","_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[3],"tags":[],"class_list":["post-61","post","type-post","status-publish","format-standard","hentry","category-symfony","ja"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>schema.yml syntax - Pistolfly<\/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:\/\/www.pistolfly.com\/weblog\/2006\/12\/schemayml-syntax.html\" \/>\n<meta property=\"og:locale\" content=\"ja_JP\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"schema.yml syntax - Pistolfly\" \/>\n<meta property=\"og:description\" content=\"http:\/\/www.symfony-project.com\/book\/trunk\/model databse.yml prod: &nbsp;propel: &nbsp; &nbsp;param: &nbsp; &amp;nb &hellip; \u7d9a\u304d\u3092\u8aad\u3080 schema.yml syntax &rarr;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.pistolfly.com\/weblog\/2006\/12\/schemayml-syntax.html\" \/>\n<meta property=\"og:site_name\" content=\"Pistolfly\" \/>\n<meta property=\"article:published_time\" content=\"2006-12-05T08:00:22+00:00\" \/>\n<meta name=\"author\" content=\"Pistolfly\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u57f7\u7b46\u8005\" \/>\n\t<meta name=\"twitter:data1\" content=\"Pistolfly\" \/>\n\t<meta name=\"twitter:label2\" content=\"\u63a8\u5b9a\u8aad\u307f\u53d6\u308a\u6642\u9593\" \/>\n\t<meta name=\"twitter:data2\" content=\"4\u5206\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.pistolfly.com\\\/weblog\\\/2006\\\/12\\\/schemayml-syntax.html#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.pistolfly.com\\\/weblog\\\/2006\\\/12\\\/schemayml-syntax.html\"},\"author\":{\"name\":\"Pistolfly\",\"@id\":\"https:\\\/\\\/www.pistolfly.com\\\/weblog\\\/#\\\/schema\\\/person\\\/e779e918730b507907b3a35b77a9a2ab\"},\"headline\":\"schema.yml syntax\",\"datePublished\":\"2006-12-05T08:00:22+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.pistolfly.com\\\/weblog\\\/2006\\\/12\\\/schemayml-syntax.html\"},\"wordCount\":853,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.pistolfly.com\\\/weblog\\\/#\\\/schema\\\/person\\\/e779e918730b507907b3a35b77a9a2ab\"},\"articleSection\":[\"Symfony\"],\"inLanguage\":\"ja\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.pistolfly.com\\\/weblog\\\/2006\\\/12\\\/schemayml-syntax.html#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.pistolfly.com\\\/weblog\\\/2006\\\/12\\\/schemayml-syntax.html\",\"url\":\"https:\\\/\\\/www.pistolfly.com\\\/weblog\\\/2006\\\/12\\\/schemayml-syntax.html\",\"name\":\"schema.yml syntax - Pistolfly\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.pistolfly.com\\\/weblog\\\/#website\"},\"datePublished\":\"2006-12-05T08:00:22+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.pistolfly.com\\\/weblog\\\/2006\\\/12\\\/schemayml-syntax.html#breadcrumb\"},\"inLanguage\":\"ja\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.pistolfly.com\\\/weblog\\\/2006\\\/12\\\/schemayml-syntax.html\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.pistolfly.com\\\/weblog\\\/2006\\\/12\\\/schemayml-syntax.html#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u30db\u30fc\u30e0\",\"item\":\"https:\\\/\\\/www.pistolfly.com\\\/weblog\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"schema.yml syntax\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.pistolfly.com\\\/weblog\\\/#website\",\"url\":\"https:\\\/\\\/www.pistolfly.com\\\/weblog\\\/\",\"name\":\"Pistolfly\",\"description\":\"Developer Blog\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.pistolfly.com\\\/weblog\\\/#\\\/schema\\\/person\\\/e779e918730b507907b3a35b77a9a2ab\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.pistolfly.com\\\/weblog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ja\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/www.pistolfly.com\\\/weblog\\\/#\\\/schema\\\/person\\\/e779e918730b507907b3a35b77a9a2ab\",\"name\":\"Pistolfly\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ja\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0b3ddb2859adabf28a2b97ae9fff98772ddffc46088d11cad2b9a2cef66115e7?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0b3ddb2859adabf28a2b97ae9fff98772ddffc46088d11cad2b9a2cef66115e7?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0b3ddb2859adabf28a2b97ae9fff98772ddffc46088d11cad2b9a2cef66115e7?s=96&d=mm&r=g\",\"caption\":\"Pistolfly\"},\"logo\":{\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0b3ddb2859adabf28a2b97ae9fff98772ddffc46088d11cad2b9a2cef66115e7?s=96&d=mm&r=g\"},\"description\":\"Software Engineer in Tokyo, Japan\",\"url\":\"https:\\\/\\\/www.pistolfly.com\\\/weblog\\\/author\\\/pistolfly\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"schema.yml syntax - Pistolfly","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:\/\/www.pistolfly.com\/weblog\/2006\/12\/schemayml-syntax.html","og_locale":"ja_JP","og_type":"article","og_title":"schema.yml syntax - Pistolfly","og_description":"http:\/\/www.symfony-project.com\/book\/trunk\/model databse.yml prod: &nbsp;propel: &nbsp; &nbsp;param: &nbsp; &nb &hellip; \u7d9a\u304d\u3092\u8aad\u3080 schema.yml syntax &rarr;","og_url":"https:\/\/www.pistolfly.com\/weblog\/2006\/12\/schemayml-syntax.html","og_site_name":"Pistolfly","article_published_time":"2006-12-05T08:00:22+00:00","author":"Pistolfly","twitter_card":"summary_large_image","twitter_misc":{"\u57f7\u7b46\u8005":"Pistolfly","\u63a8\u5b9a\u8aad\u307f\u53d6\u308a\u6642\u9593":"4\u5206"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.pistolfly.com\/weblog\/2006\/12\/schemayml-syntax.html#article","isPartOf":{"@id":"https:\/\/www.pistolfly.com\/weblog\/2006\/12\/schemayml-syntax.html"},"author":{"name":"Pistolfly","@id":"https:\/\/www.pistolfly.com\/weblog\/#\/schema\/person\/e779e918730b507907b3a35b77a9a2ab"},"headline":"schema.yml syntax","datePublished":"2006-12-05T08:00:22+00:00","mainEntityOfPage":{"@id":"https:\/\/www.pistolfly.com\/weblog\/2006\/12\/schemayml-syntax.html"},"wordCount":853,"commentCount":0,"publisher":{"@id":"https:\/\/www.pistolfly.com\/weblog\/#\/schema\/person\/e779e918730b507907b3a35b77a9a2ab"},"articleSection":["Symfony"],"inLanguage":"ja","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.pistolfly.com\/weblog\/2006\/12\/schemayml-syntax.html#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.pistolfly.com\/weblog\/2006\/12\/schemayml-syntax.html","url":"https:\/\/www.pistolfly.com\/weblog\/2006\/12\/schemayml-syntax.html","name":"schema.yml syntax - Pistolfly","isPartOf":{"@id":"https:\/\/www.pistolfly.com\/weblog\/#website"},"datePublished":"2006-12-05T08:00:22+00:00","breadcrumb":{"@id":"https:\/\/www.pistolfly.com\/weblog\/2006\/12\/schemayml-syntax.html#breadcrumb"},"inLanguage":"ja","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.pistolfly.com\/weblog\/2006\/12\/schemayml-syntax.html"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.pistolfly.com\/weblog\/2006\/12\/schemayml-syntax.html#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u30db\u30fc\u30e0","item":"https:\/\/www.pistolfly.com\/weblog"},{"@type":"ListItem","position":2,"name":"schema.yml syntax"}]},{"@type":"WebSite","@id":"https:\/\/www.pistolfly.com\/weblog\/#website","url":"https:\/\/www.pistolfly.com\/weblog\/","name":"Pistolfly","description":"Developer Blog","publisher":{"@id":"https:\/\/www.pistolfly.com\/weblog\/#\/schema\/person\/e779e918730b507907b3a35b77a9a2ab"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.pistolfly.com\/weblog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ja"},{"@type":["Person","Organization"],"@id":"https:\/\/www.pistolfly.com\/weblog\/#\/schema\/person\/e779e918730b507907b3a35b77a9a2ab","name":"Pistolfly","image":{"@type":"ImageObject","inLanguage":"ja","@id":"https:\/\/secure.gravatar.com\/avatar\/0b3ddb2859adabf28a2b97ae9fff98772ddffc46088d11cad2b9a2cef66115e7?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/0b3ddb2859adabf28a2b97ae9fff98772ddffc46088d11cad2b9a2cef66115e7?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/0b3ddb2859adabf28a2b97ae9fff98772ddffc46088d11cad2b9a2cef66115e7?s=96&d=mm&r=g","caption":"Pistolfly"},"logo":{"@id":"https:\/\/secure.gravatar.com\/avatar\/0b3ddb2859adabf28a2b97ae9fff98772ddffc46088d11cad2b9a2cef66115e7?s=96&d=mm&r=g"},"description":"Software Engineer in Tokyo, Japan","url":"https:\/\/www.pistolfly.com\/weblog\/author\/pistolfly"}]}},"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/paorzz-Z","jetpack-related-posts":[],"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.pistolfly.com\/weblog\/wp-json\/wp\/v2\/posts\/61","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.pistolfly.com\/weblog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.pistolfly.com\/weblog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.pistolfly.com\/weblog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.pistolfly.com\/weblog\/wp-json\/wp\/v2\/comments?post=61"}],"version-history":[{"count":0,"href":"https:\/\/www.pistolfly.com\/weblog\/wp-json\/wp\/v2\/posts\/61\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.pistolfly.com\/weblog\/wp-json\/wp\/v2\/media?parent=61"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.pistolfly.com\/weblog\/wp-json\/wp\/v2\/categories?post=61"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.pistolfly.com\/weblog\/wp-json\/wp\/v2\/tags?post=61"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}