schema stringclasses 471
values | key stringlengths 0 203 | description stringlengths 0 4.37k | object stringlengths 2 322k |
|---|---|---|---|
container-structure-test.json | fileExistenceTests | File existence tests check to make sure a specific file (or directory) exist within the file system of the image. No contents of the files or directories are checked. These tests can also be used to ensure a file or directory is not present in the file system. | {"type": "array", "items": {"type": "object", "required": ["name", "path", "shouldExist"], "properties": {"name": {"type": "string"}, "path": {"type": "string", "default": "/"}, "shouldExist": {"type": "boolean", "default": true}, "permissions": {"type": "string"}, "uid": {"type": "number"}, "gid": {"type": "number"}, "isExecutableBy": {"type": "string", "enum": ["owner", "group", "any", "other"]}}}} |
container-structure-test.json | name | The name of the test | {"type": "string"} |
container-structure-test.json | path | Path to the file or directory under test | {"type": "string", "default": "/"} |
container-structure-test.json | shouldExist | Whether or not the specified file or directory should exist in the file system | {"type": "boolean", "default": true} |
container-structure-test.json | permissions | The expected Unix permission string (e.g. drwxrwxrwx) of the files or directory. | {"type": "string"} |
container-structure-test.json | uid | The expected Unix user ID of the owner of the file or directory. | {"type": "number"} |
container-structure-test.json | gid | The expected Unix group ID of the owner of the file or directory. | {"type": "number"} |
container-structure-test.json | isExecutableBy | Checks if file is executable by a given user. | {"type": "string", "enum": ["owner", "group", "any", "other"]} |
container-structure-test.json | fileContentTests | File content tests open a file on the file system and check its contents. These tests assume the specified file is a file, and that it exists | {"type": "array", "items": {"type": "object", "required": ["name", "path"], "properties": {"name": {"type": "string"}, "path": {"type": "string"}, "expectedContents": {"type": "array", "minItems": 1, "items": {"type": "string"}}, "excludedContents": {"type": "array", "minItems": 1, "items": {"type": "string"}}}}} |
container-structure-test.json | name | The name of the test | {"type": "string"} |
container-structure-test.json | path | Path to the file under test | {"type": "string"} |
container-structure-test.json | expectedContents | List of regexes that should match the contents of the file | {"type": "array", "minItems": 1, "items": {"type": "string"}} |
container-structure-test.json | excludedContents | List of regexes that should not match the contents of the file | {"type": "array", "minItems": 1, "items": {"type": "string"}} |
container-structure-test.json | licenseTests | License tests check a list of copyright files and makes sure all licenses are allowed at Google. By default it will look at where Debian lists all copyright files, but can also look at an arbitrary list of files. | {"type": "array", "items": {"type": "object", "required": ["debian"], "properties": {"debian": {"type": "boolean", "default": true}, "files": {"type": "array", "minItems": 1, "items": {"type": "string"}}}}} |
container-structure-test.json | debian | if the image is based on Debian, check where Debian lists all licenses. | {"type": "boolean", "default": true} |
container-structure-test.json | files | A list of other files to check. | {"type": "array", "minItems": 1, "items": {"type": "string"}} |
container-structure-test.json | env | A list of environment variable key/value pairs that should be set in the container. | {"type": "array", "minItems": 1, "items": {}} |
container-structure-test.json | labels | A list of image labels key/value pairs that should be set on the container. | {"type": "array", "minItems": 1, "items": {}} |
container-structure-test.json | entrypoint | The entrypoint of the container | {"type": "array", "minItems": 1, "items": {"type": "string"}} |
container-structure-test.json | cmd | The CMD specified in the container | {"type": "array", "minItems": 1, "items": {"type": "string"}} |
container-structure-test.json | exposedPorts | The ports exposed in the container. | {"type": "array", "minItems": 1, "items": {"type": "string"}} |
container-structure-test.json | unexposedPorts | The ports NOT exposed in the container. | {"type": "array", "minItems": 1, "items": {"type": "string"}} |
container-structure-test.json | volumes | The volumes exposed in the container. | {"type": "array", "minItems": 1, "items": {"type": "string"}} |
container-structure-test.json | unmountedVolumes | The volumes NOT exposed in the container | {"type": "array", "minItems": 1, "items": {"type": "string"}} |
container-structure-test.json | workdir | The default working directory of the container. | {"type": "string"} |
container-structure-test.json | globalEnvVars | A list of environment variables can optionally be specified as part of the test setup. | {"type": "array", "minItems": 1, "items": {}} |
github-discussion.json | title | A default title that will be pre-populated in the discussion submission form. | {"type": "string"} |
github-discussion.json | labels | Labels that will automatically be added to discussions created with this template. | {"oneOf": [{"type": "string"}, {"type": "array", "items": {"type": "string"}}]} |
github-discussion.json | body | Definition of the input types in the discussion form | {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string", "enum": ["markdown", "textarea", "input", "dropdown", "checkboxes"]}, "attributes": {"type": "object", "properties": {"label": {"type": "string"}, "placeholder": {"type": "string"}}}, "validations": {"type": "object", "properties": {"required": {"type": "boolean"}}}}}} |
lerna.json | Lerna is a tool used in JavaScript monorepo projects. The lerna.json file is
used to configure lerna to to best fit your project. | {"$schema": "http://json-schema.org/draft-07/schema#", "properties": {"version": {"type": "string"}, "npmClient": {"type": "string"}, "npmClientArgs": {"type": "array", "items": {"type": "string"}}, "useWorkspaces": {"type": "boolean"}, "workspaces": {"type": "array", "items": {"type": "string"}}, "packages": {"type": "array", "items": {"type": "string"}}, "ignoreChanges": {"type": "array", "items": {"type": "string"}}, "command": {"type": "object", "properties": {"publish": {"type": "object", "properties": {"ignoreChanges": {"type": ["string", "array"], "items": {"type": "string"}}, "message": {"type": "string"}}}, "bootstrap": {"type": "object", "properties": {"ignore": {"type": ["string", "array"], "items": {"type": "string"}}, "npmClientArgs": {"type": "array", "items": {"type": "string"}}}}, "init": {"type": "object", "properties": {"exact": {"type": "boolean"}}}, "run": {"type": "object", "properties": {"npmClient": {"type": "string"}}}, "version": {"type": "object", "properties": {"allowBranch": {"type": ["string", "array"], "items": {"type": "string"}}, "message": {"type": "string"}}}}}}, "type": "object"} | |
lerna.json | version | The current version of the repository (or independent). | {"type": "string"} |
lerna.json | npmClient | Specify which client to run commands with (change to "yarn" to run commands with yarn. Defaults to "npm". | {"type": "string"} |
lerna.json | npmClientArgs | Array of strings that will be passed as arguments to the npmClient. | {"type": "array", "items": {"type": "string"}} |
lerna.json | useWorkspaces | Enable workspaces integration when using Yarn. | {"type": "boolean"} |
lerna.json | workspaces | Array of globs to use a workspace locations. | {"type": "array", "items": {"type": "string"}} |
lerna.json | packages | Array of globs to use a package locations. | {"type": "array", "items": {"type": "string"}} |
lerna.json | ignoreChanges | Array of globs of files to ignore when detecting changed packages. | {"type": "array", "items": {"type": "string"}} |
lerna.json | command | Options for the CLI commands. | {"type": "object", "properties": {"publish": {"type": "object", "properties": {"ignoreChanges": {"type": ["string", "array"], "items": {"type": "string"}}, "message": {"type": "string"}}}, "bootstrap": {"type": "object", "properties": {"ignore": {"type": ["string", "array"], "items": {"type": "string"}}, "npmClientArgs": {"type": "array", "items": {"type": "string"}}}}, "init": {"type": "object", "properties": {"exact": {"type": "boolean"}}}, "run": {"type": "object", "properties": {"npmClient": {"type": "string"}}}, "version": {"type": "object", "properties": {"allowBranch": {"type": ["string", "array"], "items": {"type": "string"}}, "message": {"type": "string"}}}}} |
lerna.json | publish | Options for the publish command. | {"type": "object", "properties": {"ignoreChanges": {"type": ["string", "array"], "items": {"type": "string"}}, "message": {"type": "string"}}} |
lerna.json | ignoreChanges | An array of globs that won't be included in "lerna changed/publish". Use this to prevent publishing of a new version unnecessarily for changes, such as fixing a README.md typo. | {"type": ["string", "array"], "items": {"type": "string"}} |
lerna.json | message | A custom commit message when performing version updates for publication. See https://github.com/lerna/lerna/tree/master/commands/version#--message-msg for more information. | {"type": "string"} |
lerna.json | bootstrap | Options for the bootstrap command. | {"type": "object", "properties": {"ignore": {"type": ["string", "array"], "items": {"type": "string"}}, "npmClientArgs": {"type": "array", "items": {"type": "string"}}}} |
lerna.json | ignore | An array of globs that won't be bootstrapped when running "lerna bootstrap" command. | {"type": ["string", "array"], "items": {"type": "string"}} |
lerna.json | npmClientArgs | Array of strings that will be passed as arguments directly to "npm install" during the "lerna bootstrap" command. | {"type": "array", "items": {"type": "string"}} |
lerna.json | init | Options for the init command. | {"type": "object", "properties": {"exact": {"type": "boolean"}}} |
lerna.json | exact | Use lerna 1.x behavior of "exact" comparison. It will enforce the exact match for all subsequent executions. | {"type": "boolean"} |
lerna.json | run | Options for the run command. | {"type": "object", "properties": {"npmClient": {"type": "string"}}} |
lerna.json | npmClient | Which npm client should be used when running package scripts. | {"type": "string"} |
lerna.json | version | Options for the version command. | {"type": "object", "properties": {"allowBranch": {"type": ["string", "array"], "items": {"type": "string"}}, "message": {"type": "string"}}} |
lerna.json | allowBranch | A whitelist of globs that match git branches where "lerna version" is enabled. | {"type": ["string", "array"], "items": {"type": "string"}} |
lerna.json | message | A custom commit message when performing version updates for publication. See https://github.com/lerna/lerna/tree/master/commands/version#--message-msg for more information. | {"type": "string"} |
specif-1.1.json | The Specification Integration Facility (SpecIF) integrates partial system models from different methods and tools in a semantic net. Collaborators shall browse, search and audit engineering results in a common context. Also, the exchange of model information between organizations and tools is facilitated. SpecIF represents the visible, i.e. the diagrams and the text, as well as the semantics of system specifications. | {"$schema": "https://json-schema.org/draft/2019-09/schema", "definitions": {"SpecifId": {"type": "string", "pattern": "^[_a-zA-Z]{1}[_a-zA-Z0-9.-]*$"}, "SpecifAlternativeId": {"type": "object", "properties": {"id": {}, "revision": {}, "project": {}}, "additionalProperties": false, "required": ["id"]}, "SpecifAlternativeIds": {"type": "array", "uniqueItems": true, "items": {}}, "SpecifRevision": {"type": "string", "pattern": "^(?:[0-9a-zA-Z]+[.:,;/-])*[0-9a-zA-Z]+$"}, "SpecifReplaces": {"type": "array", "maxItems": 2, "uniqueItems": true, "items": {}}, "SpecifKey": {"type": "object", "properties": {"id": {}, "revision": {}}, "additionalProperties": false, "required": ["id"]}, "SpecifKeys": {"type": "array", "uniqueItems": true, "items": {}}, "SpecifRights": {"type": "object", "properties": {"url": {"type": "string", "format": "uri"}}, "required": ["title", "url"]}, "SpecifOrg": {"type": "object", "properties": {"organizationName": {"type": "string"}}, "required": ["organizationName"]}, "SpecifCreatedBy": {"type": "object", "properties": {"familyName": {"type": "string"}, "givenName": {"type": "string"}, "org": {}, "email": {"type": "string", "format": "email"}}, "required": ["email"]}, "SpecifText": {"type": "string"}, "SpecifTextFormat": {"type": "string", "enum": ["plain", "xhtml"]}, "SpecifMultiLanguageText": {"type": "array", "uniqueItems": true, "items": {"type": "object", "properties": {"text": {"type": "string"}, "format": {}, "language": {"type": "string"}}, "additionalProperties": false, "required": ["text"]}}, "SpecifValue": {"oneOf": [{"type": "string"}, {}]}, "SpecifValues": {"type": "array", "minItems": 1, "uniqueItems": true, "items": {}}, "SpecifEnumeratedValue": {"type": "object", "properties": {"id": {}, "value": {}}, "required": ["id", "value"]}, "SpecifEnumeratedValues": {"type": "array", "uniqueItems": true, "items": {}}, "SpecifDateTime": {"type": "string", "format": "date-time"}, "SpecifIcon": {"type": "string"}, "SpecifInstantiation": {"type": "array", "uniqueItems": true, "items": {"type": "string", "enum": ["auto", "user"]}}, "SpecifDataType": {"oneOf": [{"type": "object", "properties": {"type": {"type": "string", "enum": ["xs:boolean"]}, "id": {}, "revision": {}, "replaces": {}, "changedAt": {}, "changedBy": {"type": "string"}}, "additionalProperties": false, "required": ["id", "title", "type", "changedAt"]}, {"type": "object", "properties": {"type": {"type": "string", "enum": ["xs:dateTime", "xs:duration", "xs:anyURI"]}, "id": {}, "enumeration": {}, "multiple": {"type": "boolean"}, "revision": {}, "replaces": {}, "changedAt": {}, "changedBy": {"type": "string"}}, "additionalProperties": false, "required": ["id", "title", "type", "changedAt"]}, {"type": "object", "properties": {"type": {"type": "string", "enum": ["xs:integer"]}, "id": {}, "minInclusive": {"type": "number"}, "maxInclusive": {"type": "number"}, "enumeration": {}, "multiple": {"type": "boolean"}, "revision": {}, "replaces": {}, "changedAt": {}, "changedBy": {"type": "string"}}, "additionalProperties": false, "required": ["id", "title", "type", "changedAt"]}, {"type": "object", "properties": {"type": {"type": "string", "enum": ["xs:double"]}, "id": {}, "fractionDigits": {"type": "integer", "minimum": 1}, "minInclusive": {"type": "number"}, "maxInclusive": {"type": "number"}, "enumeration": {}, "multiple": {"type": "boolean"}, "revision": {}, "replaces": {}, "changedAt": {}, "changedBy": {"type": "string"}}, "additionalProperties": false, "required": ["id", "title", "type", "changedAt"]}, {"type": "object", "properties": {"type": {"type": "string", "enum": ["xs:string"]}, "id": {}, "maxLength": {"type": "integer", "minimum": 0}, "enumeration": {}, "multiple": {"type": "boolean"}, "revision": {}, "replaces": {}, "changedAt": {}, "changedBy": {"type": "string"}}, "additionalProperties": false, "required": ["id", "title", "type", "changedAt"]}]}, "SpecifPropertyClass": {"type": "object", "properties": {"id": {}, "dataType": {}, "multiple": {"type": "boolean"}, "values": {}, "format": {}, "unit": {"type": "string"}, "revision": {}, "replaces": {}, "changedAt": {}, "changedBy": {"type": "string"}}, "additionalProperties": false, "required": ["id", "title", "dataType", "changedAt"]}, "SpecifResourceClass": {"type": "object", "properties": {"id": {}, "extends": {}, "icon": {}, "isHeading": {"type": "boolean"}, "instantiation": {}, "propertyClasses": {}, "revision": {}, "replaces": {}, "changedAt": {}, "changedBy": {"type": "string"}}, "additionalProperties": false, "required": ["id", "title", "propertyClasses", "changedAt"]}, "SpecifStatementClass": {"type": "object", "properties": {"id": {}, "extends": {}, "icon": {}, "instantiation": {}, "isUndirected": {"type": "boolean"}, "propertyClasses": {}, "subjectClasses": {}, "objectClasses": {}, "revision": {}, "replaces": {}, "changedAt": {}, "changedBy": {"type": "string"}}, "additionalProperties": false, "required": ["id", "title", "changedAt"]}, "SpecifProperty": {"type": "object", "properties": {"class": {}, "values": {}}, "required": ["class", "values"]}, "SpecifProperties": {"type": "array", "uniqueItems": true, "items": {}}, "SpecifResource": {"type": "object", "properties": {"id": {}, "alternativeIds": {}, "class": {}, "language": {"type": "string"}, "properties": {}, "revision": {}, "replaces": {}, "changedAt": {}, "changedBy": {"type": "string"}}, "required": ["id", "class", "properties", "changedAt"]}, "SpecifStatement": {"type": "object", "properties": {"id": {}, "alternativeIds": {}, "class": {}, "language": {"type": "string"}, "subject": {}, "object": {}, "properties": {}, "revision": {}, "replaces": {}, "changedAt": {}, "changedBy": {"type": "string"}}, "required": ["id", "class", "subject", "object", "changedAt"]}, "SpecifNode": {"type": "object", "properties": {"id": {}, "resource": {}, "nodes": {}, "revision": {}, "replaces": {}, "changedAt": {}, "changedBy": {"type": "string"}}, "required": ["id", "resource", "changedAt"]}, "SpecifNodes": {"type": "array", "uniqueItems": true, "items": {}}, "SpecifFile": {"type": "object", "properties": {"id": {}, "url": {"type": "string"}, "type": {"type": "string"}, "revision": {}, "replaces": {}, "changedAt": {}, "changedBy": {"type": "string"}}, "required": ["id", "title", "type", "changedAt"]}}, "properties": {"$schema": {"type": "string", "format": "uri", "pattern": "^https?:\\/\\/(specif\\.de\\/v1\\.1\\/schema|json\\.schemastore\\.org\\/specif-1\\.1)\\.json$"}, "id": {}, "revision": {}, "isExtension": {"type": "boolean"}, "generator": {"type": "string"}, "generatorVersion": {"type": "string"}, "rights": {}, "createdAt": {}, "createdBy": {}, "language": {"type": "string"}, "dataTypes": {"type": "array", "uniqueItems": true, "items": {}}, "propertyClasses": {"type": "array", "uniqueItems": true, "items": {}}, "resourceClasses": {"type": "array", "uniqueItems": true, "items": {}}, "statementClasses": {"type": "array", "uniqueItems": true, "items": {}}, "resources": {"type": "array", "uniqueItems": true, "items": {}}, "statements": {"type": "array", "uniqueItems": true, "items": {}}, "hierarchies": {}, "files": {"type": "array", "uniqueItems": true, "items": {}}}, "required": ["$schema", "id", "dataTypes", "propertyClasses", "resourceClasses", "statementClasses", "resources", "statements", "hierarchies"], "type": "object"} | |
specif-1.1.json | SpecifId | A globally unique identifier. | {"type": "string", "pattern": "^[_a-zA-Z]{1}[_a-zA-Z0-9.-]*$"} |
specif-1.1.json | SpecifAlternativeId | A list of pointers to resources resp. statements which have been merged to this one. | {"type": "object", "properties": {"id": {}, "revision": {}, "project": {}}, "additionalProperties": false, "required": ["id"]} |
specif-1.1.json | id | A string with a valid identifier of a model-element | {} |
specif-1.1.json | revision | If missing, the latest revision is implied. | {} |
specif-1.1.json | project | A string with a valid project identifier in case the identifier is not globally unique. | {} |
specif-1.1.json | SpecifAlternativeIds | The list of consolidated items to be used in case a consolidated item shall be updated. | {"type": "array", "uniqueItems": true, "items": {}} |
specif-1.1.json | SpecifRevision | A globally unique revision tag with one or multiple blocks with alphanumeric characters separated by a special character [.:,;/-]. Sequential as well as branching/merging notations are possible. | {"type": "string", "pattern": "^(?:[0-9a-zA-Z]+[.:,;/-])*[0-9a-zA-Z]+$"} |
specif-1.1.json | SpecifReplaces | For change and configuration management; the first revision has 0 entries, a simple modification has 1 entry and the result of a merge has 2 entries. | {"type": "array", "maxItems": 2, "uniqueItems": true, "items": {}} |
specif-1.1.json | SpecifKey | A key for a particular revision of an identifiable item, e.g. of a resource. A key consists of a globally unique identifier and a revision. No or an undefined revision means the latest revision of the identified item. | {"type": "object", "properties": {"id": {}, "revision": {}}, "additionalProperties": false, "required": ["id"]} |
specif-1.1.json | revision | If missing, the latest revision is implied. | {} |
specif-1.1.json | SpecifKeys | A list of keys referencing items such as propertyClasses, resourceClasses or statementClasses; any list must have >0 entries including those of any parent element. | {"type": "array", "uniqueItems": true, "items": {}} |
specif-1.1.json | SpecifCreatedBy | The creator of the SpecIF data-set (file). If specified, at least an e-mail address must be given. | {"type": "object", "properties": {"familyName": {"type": "string"}, "givenName": {"type": "string"}, "org": {}, "email": {"type": "string", "format": "email"}}, "required": ["email"]} |
specif-1.1.json | SpecifText | A good class name indicates it's role. The use of a vocabulary-term is recommended, which in turn can be translated to any natural or domain language. | {"type": "string"} |
specif-1.1.json | SpecifMultiLanguageText | A list of items with text and language properties. If the information is be provided in multiple languages, the language must be specified for proper selection; it is however not required by the schema to avoid a lot of overhead in most cases with a single language. | {"type": "array", "uniqueItems": true, "items": {"type": "object", "properties": {"text": {"type": "string"}, "format": {}, "language": {"type": "string"}}, "additionalProperties": false, "required": ["text"]}} |
specif-1.1.json | text | A string containing some text. | {"type": "string"} |
specif-1.1.json | format | By default, the format is assumed 'plain'. | {} |
specif-1.1.json | language | An IETF language tag such as 'en', 'en-US, 'fr' or 'de'. | {"type": "string"} |
specif-1.1.json | SpecifValue | For properties with a dataType other than 'xs:string'. | {"type": "string"} |
specif-1.1.json | SpecifValue | For properties with dataType 'xs:string'. | {} |
specif-1.1.json | SpecifValues | If 'multiple' of the propertyClass is undefined or false, the array must contain one item. If the value is unknown, omit the whole property. By default, the class' value applies. | {"type": "array", "minItems": 1, "uniqueItems": true, "items": {}} |
specif-1.1.json | SpecifEnumeratedValues | Enumerated values for the given dataType. If 'multiple' is true 0..n options may be selected, otherwise exactly one must be selected. | {"type": "array", "uniqueItems": true, "items": {}} |
specif-1.1.json | SpecifDateTime | An ISO-8601 dateTime string. For reduced accuracy, any number of values may be dropped, but only from right to left. | {"type": "string", "format": "date-time"} |
specif-1.1.json | SpecifIcon | A symbol for display as a prefix to titles; applicable to all instances of the class. Is usually a XML-encoded UTF-8 symbol, can be an URL or dataURL. | {"type": "string"} |
specif-1.1.json | SpecifInstantiation | Indicates whether an instance of the class is created automatically, manually or both. All is allowed, if the property is omitted. The class is abstract and cannot be instantiated, if the property list is present, but empty. | {"type": "array", "uniqueItems": true, "items": {"type": "string", "enum": ["auto", "user"]}} |
specif-1.1.json | type | The corresponding definition in https://www.w3.org/TR/xmlschema-2/ applies. | {"type": "string", "enum": ["xs:boolean"]} |
specif-1.1.json | type | The corresponding definition in https://www.w3.org/TR/xmlschema-2/ applies. | {"type": "string", "enum": ["xs:dateTime", "xs:duration", "xs:anyURI"]} |
specif-1.1.json | enumeration | An optional list of values to choose from for a specific instance; multiple values are allowed, if 'multiple' is set to 'true'. | {} |
specif-1.1.json | multiple | Indicates whether multiple values are allowed; by default the value is 'false'. | {"type": "boolean"} |
specif-1.1.json | type | The corresponding definition in https://www.w3.org/TR/xmlschema-2/ applies. | {"type": "string", "enum": ["xs:integer"]} |
specif-1.1.json | minInclusive | Optional use by dataTypes 'xs:integer' and 'xs:double'. | {"type": "number"} |
specif-1.1.json | maxInclusive | Optional use by dataTypes 'xs:integer' and 'xs:double'. | {"type": "number"} |
specif-1.1.json | enumeration | An optional list of values to choose from for a specific instance; multiple values are allowed, if 'multiple' is set to 'true'. | {} |
specif-1.1.json | multiple | Indicates whether multiple values are allowed; by default the value is 'false'. | {"type": "boolean"} |
specif-1.1.json | type | The corresponding definition in https://www.w3.org/TR/xmlschema-2/ applies. | {"type": "string", "enum": ["xs:double"]} |
specif-1.1.json | fractionDigits | Optional use by dataType 'xs:double', indicates the number of decimals. | {"type": "integer", "minimum": 1} |
specif-1.1.json | minInclusive | Optional use by dataTypes 'xs:integer' and 'xs:double'. | {"type": "number"} |
specif-1.1.json | maxInclusive | Optional use by dataTypes 'xs:integer' and 'xs:double'. | {"type": "number"} |
specif-1.1.json | enumeration | An optional list of values to choose from for a specific instance; multiple values are allowed, if 'multiple' is set to 'true'. | {} |
specif-1.1.json | multiple | Indicates whether multiple values are allowed; by default the value is 'false'. | {"type": "boolean"} |
specif-1.1.json | type | The corresponding definition in https://www.w3.org/TR/xmlschema-2/ applies. | {"type": "string", "enum": ["xs:string"]} |
specif-1.1.json | maxLength | Optional use by dataType 'xs:string'. | {"type": "integer", "minimum": 0} |
specif-1.1.json | enumeration | An optional list of values to choose from for a specific instance; multiple values are allowed, if 'multiple' is set to 'true'. | {} |
specif-1.1.json | multiple | Indicates whether multiple values are allowed; by default the value is 'false'. | {"type": "boolean"} |
specif-1.1.json | dataType | Must be a member of dataTypes. | {} |
specif-1.1.json | multiple | Optional use by all propertyClasses. Indicates whether multiple values can be given. If omitted, the 'multiple' property of the dataType applies; by default the value is 'false'. | {"type": "boolean"} |
specif-1.1.json | values | An optional list of default values in case the instantiated resource's or statement's property is missing. | {} |
specif-1.1.json | format | The default format of a property's text value. Is superseded by a text value's format attribute. | {} |
specif-1.1.json | unit | The unit of a property's numeric value; preferrably an SI unit symbol such as 'm^3/kg' (Système international (d'unités)) or a currency symbol. | {"type": "string"} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.