We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Mandarory fields:
Optional fileds:
schema.yml:
# JSON Schema for metayaml files schema: https://json-schema.org/draft/2020-12/schema id: bgc-jena.mpg.de/metayaml/schema title: Metayaml schema description: Attributes of files and directories stored in YAML sidecar files type: object properties: description: type: string responsible: type: string users: type: array items: type: string expires: anyOf: - type: string pattern: "^([0-9]+-?)+$" - type: number labels: type: array items: type: string required: - description - responsible - expires
good.yml:
description: test responsible: fgans expires: 2024-07 users: - dloos - fgans labels: - project_1 - high_res - esa foo: 1 bar: baz
bad.yml:
description: test foo: 1
The text was updated successfully, but these errors were encountered:
❯ metayaml validate good.yml schema.yml Validation sucessfull ❯ metayaml validate bad.yml schema.yml jsonschema.exceptions.ValidationError: 'responsible' is a required property
Sorry, something went wrong.
No branches or pull requests
Mandarory fields:
Optional fileds:
schema.yml:
good.yml:
bad.yml:
The text was updated successfully, but these errors were encountered: