You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
schedule: "0 0 * * *"# Cron expression for frequency
46
+
serverLocation: "City, CC"# Server location (City, Country code)
47
+
```
66
48
67
-
## Validation
68
-
69
-
Ensure your metadata file:
70
-
- Contains all required fields
71
-
- Uses correct YAML syntax
72
-
- Has valid URLs
73
-
- Uses proper date formats (YYYY-MM-DD)
74
-
- Contains valid language and jurisdiction codes
49
+
5. Define governance structure:
75
50
76
-
## Result
51
+
```yaml
52
+
governance:
53
+
- name: "Host entity"
54
+
url: "https://entity-website.com"
55
+
logo: "https://path-to-logo.png"
56
+
roles: ["curator", "maintainer"]
57
+
- name: "Admin entity"
58
+
url: "https://admin-website.com"
59
+
logo: "https://path-to-logo.png"
60
+
roles: ["administrator"]
61
+
```
77
62
78
-
A properly configured `metadata.yml` file in your collection's root directory that defines your collection's essential characteristics and operational parameters.
63
+
6. Add optional fields as needed:
79
64
80
-
## Next Steps
65
+
```yaml
66
+
logo: "https://path-to-collection-logo.png"
67
+
donations: "https://donation-page-url.com"
68
+
```
81
69
82
-
After creating your metadata.yml file:
83
-
1. Commit it to your collection's repository
84
-
2. Test it with the Open Terms Archive engine
85
-
3. Update as needed based on validation results
70
+
7. Validate your YAML syntax using a YAML validator.
0 commit comments