|
5 | 5 | columns:
|
6 | 6 | - name: id
|
7 | 7 | description: "The unique identifier for a meeting"
|
| 8 | + data_tests: |
| 9 | + - not_null |
| 10 | + - unique |
| 11 | + constraints: |
| 12 | + - type: not_null |
| 13 | + - type: unique |
| 14 | + - type: primary_key |
| 15 | + - name: title |
| 16 | + description: "The title of the meeting" |
| 17 | + data_tests: |
| 18 | + - not_null |
| 19 | + constraints: |
| 20 | + - type: not_null |
| 21 | + - name: description |
| 22 | + description: "A brief description of the meeting" |
| 23 | + - name: address |
| 24 | + description: "The physical or virtual address of the meeting" |
| 25 | + - name: attendees_count |
| 26 | + description: "The total number of attendees at the meeting" |
| 27 | + - name: created_at |
| 28 | + description: "The timestamp when the meeting was created" |
| 29 | + data_tests: |
| 30 | + - not_null |
| 31 | + constraints: |
| 32 | + - type: not_null |
| 33 | + - name: decidim_scope_id |
| 34 | + description: "The identifier of the scope this meeting belongs to" |
| 35 | + constraints: |
| 36 | + - type: not_null |
| 37 | + - type: foreign_key |
| 38 | + expression: "{{ target.schema }}.decidim_scopes (id)" |
| 39 | + - name: decidim_component_id |
| 40 | + description: "The identifier of the component associated with the meeting" |
| 41 | + constraints: |
| 42 | + - type: not_null |
| 43 | + - type: foreign_key |
| 44 | + expression: "{{ target.schema }}.components (id)" |
| 45 | + - name: start_time |
| 46 | + description: "The start time of the meeting" |
| 47 | + - name: end_time |
| 48 | + description: "The end time of the meeting" |
| 49 | + - name: registration_url |
| 50 | + description: "URL for registration for the meeting" |
| 51 | + - name: type_of_meeting |
| 52 | + description: "The type/category of the meeting" |
| 53 | + - name: translated_type_of_meeting |
| 54 | + description: "The translated type of the meeting" |
| 55 | + - name: private_meeting |
| 56 | + description: "Indicates if the meeting is private" |
| 57 | + - name: decidim_author_id |
| 58 | + description: "The ID of the author or organizer of the meeting" |
| 59 | + constraints: |
| 60 | + - type: not_null |
| 61 | + - type: foreign_key |
| 62 | + expression: "{{ target.schema }}.decidim_users (id)" |
| 63 | + - name: resource_type |
| 64 | + description: "The type of resource related to the meeting" |
| 65 | + - name: meeting_url |
| 66 | + description: "The URL to access the meeting" |
| 67 | + - name: categories |
| 68 | + description: "Categories associated with the meeting" |
| 69 | + - name: sub_categories |
| 70 | + description: "Subcategories associated with the meeting" |
| 71 | + - name: categorizations |
| 72 | + description: "The full categorization data (raw) for the meeting" |
8 | 73 | unit_tests:
|
9 | 74 | - name: test_url_concatenation
|
10 | 75 | description: "Check URL concatenation logic"
|
|
0 commit comments