0byt3m1n1
Path:
C:
/
Program Files
/
RStudio
/
resources
/
app
/
bin
/
quarto
/
share
/
schema
/
[
Home
]
File: schema.yml
- id: schema/scalar anyOf: - number - boolean - string - enum: [null] - id: schema/description anyOf: - string - object: closed: true properties: short: string long: string - id: schema/base object: closed: true properties: additionalCompletions: arrayOf: string completions: arrayOf: string id: string hidden: boolean tags: object errorDescription: string description: ref: schema/description default: any - id: schema/enum object: closed: true super: resolveRef: schema/base properties: enum: anyOf: - arrayOf: ref: schema/scalar - object: closed: true super: resolveRef: schema/base properties: values: arrayOf: ref: schema/scalar - id: schema/null object: closed: true super: resolveRef: schema/base properties: "null": ref: schema/schema - id: schema/explicit-schema object: closed: true super: resolveRef: schema/base properties: schema: ref: schema/schema - id: schema/string anyOf: - object: closed: true super: resolveRef: schema/base properties: pattern: string - object: closed: true super: resolveRef: schema/base properties: string: ref: schema/schema path: ref: schema/schema pattern: ref: schema/schema - id: schema/number object: closed: true super: resolveRef: schema/base properties: number: ref: schema/schema - id: schema/boolean object: closed: true super: resolveRef: schema/base properties: boolean: ref: schema/schema - id: schema/resolve-ref object: closed: true properties: resolveRef: string - id: schema/ref object: closed: true properties: ref: string description: ref: schema/description # NB: schema/ref is _not_ a schema/base. #object: # super: # resolveRef: schema/base # properties: # ref: string - id: schema/maybe-array-of object: closed: true super: resolveRef: schema/base properties: maybeArrayOf: ref: schema/schema - id: schema/array-of object: closed: true super: resolveRef: schema/base properties: arrayOf: anyOf: - ref: schema/schema - object: closed: true super: resolveRef: schema/base properties: length: number schema: ref: schema/schema - id: schema/all-of object: closed: true super: resolveRef: schema/base properties: allOf: anyOf: - arrayOf: ref: schema/schema - object: super: resolveRef: schema/base properties: schemas: arrayOf: ref: schema/schema - id: schema/any-of object: closed: true super: resolveRef: schema/base properties: anyOf: anyOf: - arrayOf: ref: schema/schema - object: super: resolveRef: schema/base properties: schemas: arrayOf: ref: schema/schema - id: schema/record object: closed: true super: resolveRef: schema/base properties: record: anyOf: - object: additionalProperties: ref: schema/schema - object: closed: true super: resolveRef: schema/base properties: properties: object: additionalProperties: ref: schema/schema required: [properties] - id: schema/object object: closed: true super: resolveRef: schema/base properties: object: object: super: resolveRef: schema/base closed: true properties: namingConvention: anyOf: - enum: ["ignore"] - arrayOf: enum: # because this particular setup is especially likely to lead to typos, # we support all naming conventions in describing naming conventions - "camelCase" - "camel-case" - "camel_case" - "capitalizationCase" - "capitalization-case" - "capitalization_case" - "underscoreCase" - "underscore-case" - "underscore_case" - "snakeCase" - "snake-case" - "snake_case" - "dashCase" - "dash-case" - "dash_case" - "kebabCase" - "kebab-case" - "kebab_case" properties: object: additionalProperties: ref: schema/schema patternProperties: object: additionalProperties: ref: schema/schema propertyNames: ref: schema/schema additionalProperties: ref: schema/schema super: maybeArrayOf: ref: schema/schema required: anyOf: - enum: ["all"] - arrayOf: string closed: boolean description: ref: schema/description completions: arrayOf: string - id: schema/schema anyOf: - ref: schema/enum - ref: schema/null - ref: schema/explicit-schema - ref: schema/string - ref: schema/number - ref: schema/boolean - ref: schema/ref - ref: schema/resolve-ref - ref: schema/any-of - ref: schema/array-of - ref: schema/maybe-array-of - ref: schema/all-of - ref: schema/record - ref: schema/object - enum: ["number", "boolean", "path", "string", null, "null", "object", "any"] description: "be a yaml schema" - id: schema/schema-field object: properties: name: string schema: ref: schema/schema hidden: boolean alias: string disabled: maybeArrayOf: string enabled: maybeArrayOf: string description: ref: schema/description tags: object errorMessage: string namingConvention: ignore required: ["name", "schema", "description"] propertyNames: enum: - name - schema - hidden - alias - disabled - enabled - description - tags - errorMessage - default # no schema, but entry allowed