BlogPost.yml 710 B

1234567891011121314151617181920212223
  1. JMS\SerializerBundle\Tests\Fixtures\BlogPost:
  2. xml_root_name: blog-post
  3. properties:
  4. title:
  5. type: string
  6. groups: [comments, post]
  7. createdAt:
  8. type: DateTime
  9. xml_attribute: true
  10. published:
  11. type: boolean
  12. serialized_name: is_published
  13. xml_attribute: true
  14. groups: [post]
  15. comments:
  16. type: ArrayCollection<JMS\SerializerBundle\Tests\Fixtures\Comment>
  17. groups: [comments]
  18. xml_list:
  19. inline: true
  20. entry_name: comment
  21. author:
  22. type: JMS\SerializerBundle\Tests\Fixtures\Author
  23. groups: [post]