{"result":{"component":{"name":"Application","providedComponents":[{"name":"User","mixins":["Storable"],"properties":[{"name":"get","type":"Method","exposure":{"call":true}},{"name":"token","type":"StorableAttribute","exposure":{"get":true,"set":true},"value":{"__undefined":true},"valueType":"string?"},{"name":"getAuthenticatedUser","type":"StorableMethod","exposure":{"call":true}}],"prototype":{"properties":[{"name":"load","type":"Method","exposure":{"call":true}},{"name":"save","type":"Method","exposure":{"call":true}},{"name":"id","type":"StorablePrimaryIdentifierAttribute","exposure":{"get":true,"set":true},"default":{"__function":"function(){return this.constructor.generateId()}"},"valueType":"string"},{"name":"createdAt","type":"StorableAttribute","exposure":{"get":true},"valueType":"Date"},{"name":"email","type":"StorableSecondaryIdentifierAttribute","exposure":{"get":true,"set":true},"default":{"__function":"function () {\nreturn \"\"\n}"},"valueType":"string","validators":[{"__validator":{"name":"rangeLength","function":{"__function":"(t,[e,r])=>t!==void 0&&t.length>=e&&t.length<=r"},"arguments":[[3,100]]}}]},{"name":"username","type":"StorableSecondaryIdentifierAttribute","exposure":{"get":true,"set":true},"default":{"__function":"function () {\nreturn \"\"\n}"},"valueType":"string","validators":[{"__validator":{"name":"notEmpty","function":{"__function":"t=>t!==void 0&&t.length>0"}}},{"__validator":{"name":"maxLength","function":{"__function":"(t,e)=>t!==void 0&&t.length<=e"},"arguments":[50]}},{"__validator":{"name":"match","function":{"__function":"(t,e)=>t!==void 0&&e.test(t)"},"arguments":[{"__regExp":"/^[a-zA-Z0-9]+$/"}]}}]},{"name":"password","type":"StorableAttribute","exposure":{"set":true},"default":{"__function":"function () {\nreturn \"\"\n}"},"valueType":"string","validators":[{"__validator":{"name":"notEmpty","function":{"__function":"t=>t!==void 0&&t.length>0"}}},{"__validator":{"name":"maxLength","function":{"__function":"(t,e)=>t!==void 0&&t.length<=e"},"arguments":[100]}}]},{"name":"bio","type":"StorableAttribute","exposure":{"get":true,"set":true},"default":{"__function":"function () {\nreturn \"\"\n}"},"valueType":"string","validators":[{"__validator":{"name":"maxLength","function":{"__function":"(t,e)=>t!==void 0&&t.length<=e"},"arguments":[200]}}]},{"name":"imageURL","type":"StorableAttribute","exposure":{"get":true,"set":true},"default":{"__function":"function () {\nreturn \"\"\n}"},"valueType":"string","validators":[{"__validator":{"name":"maxLength","function":{"__function":"(t,e)=>t!==void 0&&t.length<=e"},"arguments":[200]}}]},{"name":"isFollowedByAuthenticatedUser","type":"StorableAttribute","exposure":{"get":true},"valueType":"boolean?"},{"name":"signUp","type":"StorableMethod","exposure":{"call":true}},{"name":"signIn","type":"StorableMethod","exposure":{"call":true}},{"name":"favorite","type":"StorableMethod","exposure":{"call":true}},{"name":"unfavorite","type":"StorableMethod","exposure":{"call":true}},{"name":"follow","type":"StorableMethod","exposure":{"call":true}},{"name":"unfollow","type":"StorableMethod","exposure":{"call":true}}]},"consumedComponents":["User"]},{"name":"Article","mixins":["Storable"],"properties":[{"name":"get","type":"Method","exposure":{"call":true}},{"name":"find","type":"Method","exposure":{"call":true}},{"name":"count","type":"Method","exposure":{"call":true}},{"name":"findPopularTags","type":"StorableMethod","exposure":{"call":true}}],"prototype":{"properties":[{"name":"load","type":"Method","exposure":{"call":true}},{"name":"save","type":"Method","exposure":{"call":true}},{"name":"delete","type":"Method","exposure":{"call":true}},{"name":"id","type":"StorablePrimaryIdentifierAttribute","exposure":{"get":true,"set":true},"default":{"__function":"function(){return this.constructor.generateId()}"},"valueType":"string"},{"name":"createdAt","type":"StorableAttribute","exposure":{"get":true},"valueType":"Date"},{"name":"author","type":"StorableAttribute","exposure":{"get":true,"set":true},"valueType":"User"},{"name":"authorIsFollowedByAuthenticatedUser","type":"StorableAttribute","exposure":{"get":true},"valueType":"boolean?"},{"name":"title","type":"StorableAttribute","exposure":{"get":true,"set":true},"default":{"__function":"function () {\nreturn \"\"\n}"},"valueType":"string","validators":[{"__validator":{"name":"notEmpty","function":{"__function":"t=>t!==void 0&&t.length>0"}}},{"__validator":{"name":"maxLength","function":{"__function":"(t,e)=>t!==void 0&&t.length<=e"},"arguments":[200]}}]},{"name":"slug","type":"StorableSecondaryIdentifierAttribute","exposure":{"get":true},"valueType":"string","validators":[{"__validator":{"name":"rangeLength","function":{"__function":"(t,[e,r])=>t!==void 0&&t.length>=e&&t.length<=r"},"arguments":[[8,300]]}}]},{"name":"description","type":"StorableAttribute","exposure":{"get":true,"set":true},"default":{"__function":"function () {\nreturn \"\"\n}"},"valueType":"string","validators":[{"__validator":{"name":"rangeLength","function":{"__function":"(t,[e,r])=>t!==void 0&&t.length>=e&&t.length<=r"},"arguments":[[1,500]]}}]},{"name":"body","type":"StorableAttribute","exposure":{"get":true,"set":true},"default":{"__function":"function () {\nreturn \"\"\n}"},"valueType":"string","validators":[{"__validator":{"name":"rangeLength","function":{"__function":"(t,[e,r])=>t!==void 0&&t.length>=e&&t.length<=r"},"arguments":[[1,50000]]}}]},{"name":"tags","type":"StorableAttribute","exposure":{"get":true,"set":true},"default":{"__function":"function () {\nreturn []\n}"},"valueType":"string[]","validators":[{"__validator":{"name":"rangeLength","function":{"__function":"(t,[e,r])=>t!==void 0&&t.length>=e&&t.length<=r"},"arguments":[[0,10]]}}],"items":{"validators":[{"__validator":{"name":"rangeLength","function":{"__function":"(t,[e,r])=>t!==void 0&&t.length>=e&&t.length<=r"},"arguments":[[1,20]]}},{"__validator":{"name":"match","function":{"__function":"(t,e)=>t!==void 0&&e.test(t)"},"arguments":[{"__regExp":"/^[a-z0-9-]+$/"}]}}]}},{"name":"favoritesCount","type":"StorableAttribute","exposure":{"get":true},"valueType":"number"},{"name":"isFavoritedByAuthenticatedUser","type":"StorableAttribute","exposure":{"get":true},"valueType":"boolean?"}]},"consumedComponents":["User","Comment"]},{"name":"Comment","mixins":["Storable"],"properties":[{"name":"find","type":"Method","exposure":{"call":true}}],"prototype":{"properties":[{"name":"load","type":"Method","exposure":{"call":true}},{"name":"save","type":"Method","exposure":{"call":true}},{"name":"delete","type":"Method","exposure":{"call":true}},{"name":"id","type":"StorablePrimaryIdentifierAttribute","exposure":{"get":true,"set":true},"default":{"__function":"function(){return this.constructor.generateId()}"},"valueType":"string"},{"name":"createdAt","type":"StorableAttribute","exposure":{"get":true},"valueType":"Date"},{"name":"author","type":"StorableAttribute","exposure":{"get":true,"set":true},"valueType":"User"},{"name":"authorIsFollowedByAuthenticatedUser","type":"StorableAttribute","exposure":{"get":true},"valueType":"boolean?"},{"name":"article","type":"StorableAttribute","exposure":{"get":true,"set":true},"valueType":"Article"},{"name":"body","type":"StorableAttribute","exposure":{"get":true,"set":true},"default":{"__function":"function () {\nreturn \"\"\n}"},"valueType":"string","validators":[{"__validator":{"name":"rangeLength","function":{"__function":"(t,[e,r])=>t!==void 0&&t.length>=e&&t.length<=r"},"arguments":[[1,50000]]}}]}]},"consumedComponents":["User"]}]}}}