schema
stringclasses
471 values
key
stringlengths
0
203
description
stringlengths
0
4.37k
object
stringlengths
2
322k
sil-kit-registry-configuration.json
Logging
Configures the properties of the SIL Kit Logging Service
{"type": "object", "properties": {"FlushLevel": {"type": "string", "enum": ["Critical", "Error", "Warn", "Info", "Debug", "Trace", "Off"]}, "Sinks": {"type": "array", "items": {"type": "object", "properties": {"Type": {"type": "string", "enum": ["File", "Stdout"]}, "Level": {"type": "string", "enum": ["Critical", "Error", "Warn", "Info", "Debug", "Trace", "Off"], "default": "Info"}, "LogName": {"type": "string"}}, "additionalProperties": false, "required": ["Type"]}}}, "additionalProperties": false, "required": ["Sinks"]}
sil-kit-registry-configuration.json
LogName
Log name; Results in the following filename: <LogName>_%y-%m-%dT%h-%m-%s.txt
{"type": "string"}
sil-kit-registry-configuration.json
$schema
The schema file
{"type": "string", "default": "", "examples": ["./RegistryConfiguration.schema.json"]}
sil-kit-registry-configuration.json
SchemaVersion
Version of the schema used to validate this document
{"anyOf": [{"type": "integer"}, {"type": "string"}], "default": 0}
sil-kit-registry-configuration.json
Description
Free text field allowing a user to describe the configuration file in their own words. The contents of this field are not parsed or used internally.
{"type": "string", "default": ""}
sil-kit-registry-configuration.json
ListenUri
The configured registry instance will listen on this address for incoming connections. Optional; This field overrides the -u, and --listen-uri command line parameters.
{"type": "string"}
config.schema.json
build_targets
List of bazel targets to build
{"items": {"type": "string"}, "type": "array"}
config.schema.json
test_targets
List of bazel targets to test
{"items": {"type": "string"}, "type": "array"}
config.schema.json
build_flags
Build flags to use in addition to defined in /etc/bazel.bazelrc
{"items": {"type": "string"}, "type": "array"}
config.schema.json
test_flags
Test flags to use in addition to defined in /etc/bazel.bazelrc
{"items": {"type": "string"}, "type": "array"}
config.schema.json
branches
List of branch name masks (doubleglob) to match
{"items": {"type": "string"}, "type": "array"}
config.schema.json
paths
List of path masks (doubleglob) to match. If not specified, all paths are matched
{"items": {"type": "string"}, "type": "array"}
config.schema.json
branches-ignore
List of branch name masks (doubleglob) to ignore
{"items": {"type": "string"}, "type": "array"}
config.schema.json
paths-ignore
List of path masks (doubleglob) to match. If not specified, all paths are ignored
{"items": {"type": "string"}, "type": "array"}
config.schema.json
branches
List of branch name masks (doubleglob) to match
{"items": {"type": "string"}, "type": "array"}
config.schema.json
tags
List of tag masks (doubleglob) to match
{"items": {"type": "string"}, "type": "array"}
config.schema.json
branches-ignore
List of branch name masks (doubleglob) to ignore
{"items": {"type": "string"}, "type": "array"}
config.schema.json
tags-ignore
List of tag masks (doubleglob) to ignore
{"items": {"type": "string"}, "type": "array"}
config.schema.json
workflows
The list of FasterCI workflows
{"items": {"$schema": "http://json-schema.org/draft-04/schema#"}, "type": "array"}
config.schema.json
push
Run the workflow on code push
{"$schema": "http://json-schema.org/draft-04/schema#"}
config.schema.json
pull_request
Run the workflow on pull request
{}
config.schema.json
name
Step name, optional
{"type": "string"}
config.schema.json
working-directory
Directory to run the step instead of default repo directory
{"type": "string"}
config.schema.json
github_check
Report the result of the step as a separate github check
{"type": "boolean"}
config.schema.json
github_check_md_file
After completing the step, report as a separate Github Check, using the content of the file as a report body, optional
{"type": "string"}
config.schema.json
run
Arbitrary command execution; Could be multiline
{"type": "string"}
config.schema.json
bazel
Bazel step
{"$schema": "http://json-schema.org/draft-04/schema#"}
config.schema.json
name
Workflow name
{"type": "string"}
config.schema.json
on
Event to activate the workflow on
{"$schema": "http://json-schema.org/draft-04/schema#"}
config.schema.json
image
Docker image to run the workflow
{"type": "string"}
config.schema.json
cleanup
optional cleanup command, executed after the workflow
{"type": "string"}
config.schema.json
max_parallel
optional maximum number of parallel runs of this workflow
{"type": "integer"}
config.schema.json
env
Environment variables
{"patternProperties": {".*": {"type": "string"}}, "type": "object"}
config.schema.json
secrets
List of secrets to mount as environment variables
{"items": {"type": "string"}, "type": "array"}
config.schema.json
hide_from_github
Do not notify github
{"type": "boolean"}
config.schema.json
init
Optional command to run before the workflow. Use multiline for multiple commands
{"type": "string"}
config.schema.json
steps
List of workflow steps to execute
{"items": {"$schema": "http://json-schema.org/draft-04/schema#"}, "type": "array"}
avro-avsc.json
Json-Schema definition for Avro AVSC files.
{"$schema": "http://json-schema.org/draft-07/schema#", "definitions": {"avroSchema": {"oneOf": [{}]}, "types": {"oneOf": [{}, {}, {}, {}, {}, {}, {}, {}, {}]}, "primitiveType": {"type": "string", "enum": ["null", "boolean", "int", "long", "float", "double", "bytes", "string"]}, "primitiveTypeWithMetadata": {"type": "object", "properties": {"type": {}}, "required": ["type"]}, "customTypeReference": {"not": {}, "type": "string", "pattern": "^[A-Za-z_][A-Za-z0-9_]*(\\.[A-Za-z_][A-Za-z0-9_]*)*$"}, "avroUnion": {"type": "array", "items": {}, "minItems": 1}, "avroField": {"type": "object", "properties": {"name": {}, "type": {}, "doc": {"type": "string"}, "default": {}, "order": {"enum": ["ascending", "descending", "ignore"]}, "aliases": {"type": "array", "items": {}}}, "required": ["name", "type"]}, "avroRecord": {"type": "object", "properties": {"type": {"type": "string", "enum": ["record"]}, "name": {}, "namespace": {}, "doc": {"type": "string"}, "aliases": {"type": "array", "items": {}}, "fields": {"type": "array", "items": {}}}, "required": ["type", "name", "fields"]}, "avroEnum": {"type": "object", "properties": {"type": {"type": "string", "enum": ["enum"]}, "name": {}, "namespace": {}, "doc": {"type": "string"}, "aliases": {"type": "array", "items": {}}, "symbols": {"type": "array", "items": {}}}, "required": ["type", "name", "symbols"]}, "avroArray": {"type": "object", "properties": {"type": {"type": "string", "enum": ["array"]}, "name": {}, "namespace": {}, "doc": {"type": "string"}, "aliases": {"type": "array", "items": {}}, "items": {}}, "required": ["type", "items"]}, "avroMap": {"type": "object", "properties": {"type": {"type": "string", "enum": ["map"]}, "name": {}, "namespace": {}, "doc": {"type": "string"}, "aliases": {"type": "array", "items": {}}, "values": {}}, "required": ["type", "values"]}, "avroFixed": {"type": "object", "properties": {"type": {"type": "string", "enum": ["fixed"]}, "name": {}, "namespace": {}, "doc": {"type": "string"}, "aliases": {"type": "array", "items": {}}, "size": {"type": "number"}}, "required": ["type", "name", "size"]}, "name": {"type": "string", "pattern": "^[A-Za-z_][A-Za-z0-9_]*$"}, "namespace": {"type": "string", "pattern": "^([A-Za-z_][A-Za-z0-9_]*(\\.[A-Za-z_][A-Za-z0-9_]*)*)*$"}}, "oneOf": [{}]}
avro-avsc.json
avroSchema
Root Schema
{"oneOf": [{}]}
avro-avsc.json
types
Allowed Avro types
{"oneOf": [{}, {}, {}, {}, {}, {}, {}, {}, {}]}
avro-avsc.json
primitiveType
Basic type primitives.
{"type": "string", "enum": ["null", "boolean", "int", "long", "float", "double", "bytes", "string"]}
avro-avsc.json
primitiveTypeWithMetadata
A primitive type with metadata attached.
{"type": "object", "properties": {"type": {}}, "required": ["type"]}
avro-avsc.json
customTypeReference
Reference to a ComplexType
{"not": {}, "type": "string", "pattern": "^[A-Za-z_][A-Za-z0-9_]*(\\.[A-Za-z_][A-Za-z0-9_]*)*$"}
avro-avsc.json
avroUnion
A Union of types
{"type": "array", "items": {}, "minItems": 1}
avro-avsc.json
avroField
A field within a Record
{"type": "object", "properties": {"name": {}, "type": {}, "doc": {"type": "string"}, "default": {}, "order": {"enum": ["ascending", "descending", "ignore"]}, "aliases": {"type": "array", "items": {}}}, "required": ["name", "type"]}
avro-avsc.json
avroRecord
A Record
{"type": "object", "properties": {"type": {"type": "string", "enum": ["record"]}, "name": {}, "namespace": {}, "doc": {"type": "string"}, "aliases": {"type": "array", "items": {}}, "fields": {"type": "array", "items": {}}}, "required": ["type", "name", "fields"]}
avro-avsc.json
avroEnum
An enumeration
{"type": "object", "properties": {"type": {"type": "string", "enum": ["enum"]}, "name": {}, "namespace": {}, "doc": {"type": "string"}, "aliases": {"type": "array", "items": {}}, "symbols": {"type": "array", "items": {}}}, "required": ["type", "name", "symbols"]}
avro-avsc.json
avroArray
An array
{"type": "object", "properties": {"type": {"type": "string", "enum": ["array"]}, "name": {}, "namespace": {}, "doc": {"type": "string"}, "aliases": {"type": "array", "items": {}}, "items": {}}, "required": ["type", "items"]}
avro-avsc.json
avroMap
A map of values
{"type": "object", "properties": {"type": {"type": "string", "enum": ["map"]}, "name": {}, "namespace": {}, "doc": {"type": "string"}, "aliases": {"type": "array", "items": {}}, "values": {}}, "required": ["type", "values"]}
avro-avsc.json
avroFixed
A fixed sized array of bytes
{"type": "object", "properties": {"type": {"type": "string", "enum": ["fixed"]}, "name": {}, "namespace": {}, "doc": {"type": "string"}, "aliases": {"type": "array", "items": {}}, "size": {"type": "number"}}, "required": ["type", "name", "size"]}
metadata.json
For every app on F-Droid a metadata file in the format of <application-id>.yml have to be provided, in order to build an app or check or if it has been updated. See https://f-droid.org/docs/Build_Metadata_Reference for a complete reference of a metadata file.
{"$schema": "http://json-schema.org/draft-07/schema", "type": "object", "properties": {"AntiFeatures": {}, "Categories": {"type": "array", "items": {"type": "string", "enum": ["Connectivity", "Development", "Games", "Graphics", "Internet", "Money", "Multimedia", "Navigation", "Phone & SMS", "Reading", "Science & Education", "Security", "Sports & Health", "System", "Theming", "Time", "Writing"]}, "uniqueItems": true, "minItems": 1}, "License": {"type": "string", "enum": ["0BSD", "AAL", "AFL-1.1", "AFL-1.2", "AFL-2.0", "AFL-2.1", "AFL-3.0", "AGPL-3.0-only", "AGPL-3.0-or-later", "APL-1.0", "APSL-1.0", "APSL-1.1", "APSL-1.2", "APSL-2.0", "Apache-1.0", "Apache-1.1", "Apache-2.0", "Artistic-1.0", "Artistic-1.0-Perl", "Artistic-1.0-cl8", "Artistic-2.0", "Beerware", "BSD-1-Clause", "BSD-2-Clause", "BSD-2-Clause-FreeBSD", "BSD-2-Clause-Patent", "BSD-3-Clause", "BSD-3-Clause-Clear", "BSD-3-Clause-LBNL", "BSD-4-Clause", "BSL-1.0", "BitTorrent-1.1", "CAL-1.0", "CAL-1.0-Combined-Work-Exception", "CATOSL-1.1", "CC-BY-4.0", "CC-BY-SA-4.0", "CC0-1.0", "CDDL-1.0", "CECILL-2.0", "CECILL-2.1", "CECILL-B", "CECILL-C", "CNRI-Python", "CPAL-1.0", "CPL-1.0", "CUA-OPL-1.0", "ClArtistic", "Condor-1.1", "ECL-1.0", "ECL-2.0", "EFL-1.0", "EFL-2.0", "EPL-1.0", "EPL-2.0", "EUDatagrid", "EUPL-1.1", "EUPL-1.2", "Entessa", "FSFAP", "FTL", "Fair", "Frameworx-1.0", "GFDL-1.1-only", "GFDL-1.1-or-later", "GFDL-1.2-only", "GFDL-1.2-or-later", "GFDL-1.3-only", "GFDL-1.3-or-later", "GPL-2.0-only", "GPL-2.0-or-later", "GPL-3.0-only", "GPL-3.0-or-later", "HPND", "IJG", "IPA", "IPL-1.0", "ISC", "Imlib2", "Intel", "LGPL-2.0-only", "LGPL-2.0-or-later", "LGPL-2.1-only", "LGPL-2.1-or-later", "LGPL-3.0-only", "LGPL-3.0-or-later", "LPL-1.0", "LPL-1.02", "LPPL-1.2", "LPPL-1.3a", "LPPL-1.3c", "LiLiQ-P-1.1", "LiLiQ-R-1.1", "LiLiQ-Rplus-1.1", "MIT", "MIT-0", "MIT-CMU", "MPL-1.0", "MPL-1.1", "MPL-2.0", "MPL-2.0-no-copyleft-exception", "MS-PL", "MS-RL", "MirOS", "Motosoto", "MulanPSL-2.0", "Multics", "NASA-1.3", "NCSA", "NGPL", "NOSL", "NPL-1.0", "NPL-1.1", "NPOSL-3.0", "NTP", "Naumen", "Nokia", "OCLC-2.0", "ODbL-1.0", "OFL-1.0", "OFL-1.1", "OFL-1.1-RFN", "OFL-1.1-no-RFN", "OGTSL", "OLDAP-2.3", "OLDAP-2.7", "OLDAP-2.8", "OSET-PL-2.1", "OSL-1.0", "OSL-1.1", "OSL-2.0", "OSL-2.1", "OSL-3.0", "OpenSSL", "PHP-3.0", "PHP-3.01", "PostgreSQL", "Python-2.0", "QPL-1.0", "RPL-1.1", "RPL-1.5", "RPSL-1.0", "RSCPL", "Ruby", "SGI-B-2.0", "SISSL", "SMLNJ", "SPL-1.0", "SimPL-2.0", "Sleepycat", "UCL-1.0", "UPL-1.0", "Unicode-DFS-2016", "Unlicense", "VSL-1.0", "Vim", "W3C", "WTFPL", "Watcom-1.0", "X11", "XFree86-1.1", "Xnet", "XSkat", "YPL-1.1", "ZPL-2.0", "ZPL-2.1", "Zend-2.0", "Zimbra-1.3", "Zlib", "gnuplot", "iMatix", "xinetd", "PublicDomain"]}, "AuthorName": {"type": "string"}, "AuthorEmail": {"type": "string", "pattern": "^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,}$"}, "AuthorWebSite": {}, "WebSite": {}, "SourceCode": {}, "IssueTracker": {}, "Translation": {}, "Changelog": {}, "Donate": {}, "FlattrID": {"type": "string", "pattern": "^[0-9a-z]+$"}, "Liberapay": {"type": "string"}, "OpenCollective": {"type": "string"}, "Bitcoin": {"type": "string", "pattern": "^(bc1|[13])[a-zA-HJ-NP-Z0-9]{25,39}$"}, "Litecoin": {"type": "string", "pattern": "^([LM3][a-km-zA-HJ-NP-Z1-9]{26,33}|ltc1[a-km-z0-9]{39})$"}, "Name": {"type": "string"}, "AutoName": {"type": "string"}, "Summary": {"type": "string", "maxLength": 80}, "AllowedAPKSigningKeys": {"anyOf": [{"type": "string", "pattern": "^[0-9a-f]{64}$"}, {"type": "array", "items": {"type": "string", "pattern": "^[0-9a-f]{64}$"}}]}, "MaintainerNotes": {"type": "string", "maxLength": 4000}, "RepoType": {"type": "string", "enum": ["git", "svn", "git-svn", "hg", "bzr", "srclib"]}, "Repo": {"type": "string"}, "Binaries": {}, "Builds": {"type": "array", "items": {"type": "object", "properties": {"versionName": {"type": "string"}, "versionCode": {"type": "integer"}, "commit": {"type": "string"}, "disable": {"type": "string"}, "subdir": {"type": "string"}, "submodules": {"const": true}, "sudo": {}, "timeout": {"type": "integer"}, "init": {}, "oldsdkloc": {"const": true}, "target": {"type": "string"}, "androidupdate": {"anyOf": [{"const": "auto"}, {"type": "array", "items": {"type": "string"}}]}, "encoding": {"type": "string"}, "forceversion": {"const": true}, "forcevercode": {"const": true}, "rm": {}, "extlibs": {}, "srclibs": {}, "patch": {}, "prebuild": {}, "scanignore": {}, "scandelete": {}, "build": {}, "postbuild": {}, "buildjni": {"anyOf": [{"type": "string", "enum": ["yes", "no"]}, {"type": "array", "items": {"type": "string"}}]}, "ndk": {"type": "string"}, "gradle": {"anyOf": [{"type": "array", "items": {"const": "yes"}, "maxItems": 1}, {"type": "array", "items": {"type": "string"}}]}, "maven": {"anyOf": [{"type": "string"}, {"type": "string", "enum": ["yes", "yes@"]}]}, "preassemble": {}, "gradleprops": {}, "antcommands": {}, "output": {"type": "string"}, "binary": {}, "novcheck": {"const": true}, "antifeatures": {}}, "required": ["versionName", "versionCode"], "additionalProperties": false}, "uniqueItems": true, "minItems": 1}, "Disabled": {"type": "string"}, "RequiresRoot": {"type": "boolean"}, "ArchivePolicy": {"type": "integer"}, "AutoUpdateMode": {"type": "string", "anyOf": [{"enum": ["None", "Version"]}, {"pattern": "^Version( \\+.+)? [^+].+"}]}, "UpdateCheckMode": {"type": "string", "anyOf": [{"enum": ["None", "Static", "HTTP"]}, {"pattern": "^RepoManifest(/.+)?$"}, {"pattern": "^Tags( .*)?$"}]}, "VercodeOperation": {"type": "array", "items": {"type": "string"}, "uniqueItems": true, "minItems": 1}, "UpdateCheckIgnore": {"type": "string"}, "UpdateCheckName": {"anyOf": [{"type": "string"}, {"type": "string", "enum": ["Ignore"]}]}, "UpdateCheckData": {"type": "string"}, "CurrentVersion": {"type": "string"}, "CurrentVersionCode": {"type": "integer"}, "NoSourceSince": {"type": "string"}}, "required": ["Categories", "License", "Builds"], "allOf": [{"anyOf": [{"required": ["Repo", "RepoType", "SourceCode"]}, {"required": ["NoSourceSince"]}]}, {"if": {"anyOf": [{"properties": {"ArchivePolicy": {"const": "0 versions"}}, "required": ["ArchivePolicy"]}, {"required": ["NoSourceSince"]}]}, "then": {"properties": {"AutoUpdateMode": {"const": "None"}, "UpdateCheckMode": {"const": "None"}}}}, {"if": {"anyOf": [{"required": ["Binaries"]}, {"properties": {"Builds": {"contains": {"required": ["binary"]}}}, "required": ["Builds"]}]}, "then": {"required": ["AllowedAPKSigningKeys"]}}, {"if": {"properties": {"UpdateCheckMode": {"pattern": "^Tags"}}}, "then": {"properties": {"AutoUpdateMode": {"type": "string", "pattern": "^(None|Version( \\+.+)?)$"}}}}], "additionalProperties": false, "definitions": {"anti_features": {"oneOf": [{"type": "array", "items": {"type": "string", "enum": ["Ads", "ApplicationDebuggable", "KnownVuln", "NonFreeAdd", "NonFreeAssets", "NonFreeDep", "NonFreeNet", "NoSourceSince", "NSFW", "UpstreamNonFree", "TetheredNet", "Tracking"]}, "uniqueItems": true, "minItems": 1}, {"type": "object", "patternProperties": {"^(Ads|Tracking|ApplicationDebuggable|KnownVuln|NonFreeAdd|NonFreeAssets|NonFreeDep|NonFreeNet|NoSourceSince|NSFW|UpstreamNonFree|Tracking)$": {}}, "additionalProperties": false}]}, "string_list": {"anyOf": [{"type": "string"}, {"type": "array", "items": {"type": "string"}}]}, "localized_string": {"type": "object", "patternProperties": {"^[a-z]{2,3}(-([A-Z][a-zA-Z]+|\\d+|[a-z]+))*$": {"type": "string"}}, "additionalProperties": false}, "url": {"type": "string", "pattern": "^https?://.*$"}}}
metadata.json
AntiFeatures
Any number of anti-features the application has.
{}
metadata.json
Categories
Any number of categories for the application to be placed in.
{"type": "array", "items": {"type": "string", "enum": ["Connectivity", "Development", "Games", "Graphics", "Internet", "Money", "Multimedia", "Navigation", "Phone & SMS", "Reading", "Science & Education", "Security", "Sports & Health", "System", "Theming", "Time", "Writing"]}, "uniqueItems": true, "minItems": 1}
metadata.json
License
{"type": "string", "enum": ["0BSD", "AAL", "AFL-1.1", "AFL-1.2", "AFL-2.0", "AFL-2.1", "AFL-3.0", "AGPL-3.0-only", "AGPL-3.0-or-later", "APL-1.0", "APSL-1.0", "APSL-1.1", "APSL-1.2", "APSL-2.0", "Apache-1.0", "Apache-1.1", "Apache-2.0", "Artistic-1.0", "Artistic-1.0-Perl", "Artistic-1.0-cl8", "Artistic-2.0", "Beerware", "BSD-1-Clause", "BSD-2-Clause", "BSD-2-Clause-FreeBSD", "BSD-2-Clause-Patent", "BSD-3-Clause", "BSD-3-Clause-Clear", "BSD-3-Clause-LBNL", "BSD-4-Clause", "BSL-1.0", "BitTorrent-1.1", "CAL-1.0", "CAL-1.0-Combined-Work-Exception", "CATOSL-1.1", "CC-BY-4.0", "CC-BY-SA-4.0", "CC0-1.0", "CDDL-1.0", "CECILL-2.0", "CECILL-2.1", "CECILL-B", "CECILL-C", "CNRI-Python", "CPAL-1.0", "CPL-1.0", "CUA-OPL-1.0", "ClArtistic", "Condor-1.1", "ECL-1.0", "ECL-2.0", "EFL-1.0", "EFL-2.0", "EPL-1.0", "EPL-2.0", "EUDatagrid", "EUPL-1.1", "EUPL-1.2", "Entessa", "FSFAP", "FTL", "Fair", "Frameworx-1.0", "GFDL-1.1-only", "GFDL-1.1-or-later", "GFDL-1.2-only", "GFDL-1.2-or-later", "GFDL-1.3-only", "GFDL-1.3-or-later", "GPL-2.0-only", "GPL-2.0-or-later", "GPL-3.0-only", "GPL-3.0-or-later", "HPND", "IJG", "IPA", "IPL-1.0", "ISC", "Imlib2", "Intel", "LGPL-2.0-only", "LGPL-2.0-or-later", "LGPL-2.1-only", "LGPL-2.1-or-later", "LGPL-3.0-only", "LGPL-3.0-or-later", "LPL-1.0", "LPL-1.02", "LPPL-1.2", "LPPL-1.3a", "LPPL-1.3c", "LiLiQ-P-1.1", "LiLiQ-R-1.1", "LiLiQ-Rplus-1.1", "MIT", "MIT-0", "MIT-CMU", "MPL-1.0", "MPL-1.1", "MPL-2.0", "MPL-2.0-no-copyleft-exception", "MS-PL", "MS-RL", "MirOS", "Motosoto", "MulanPSL-2.0", "Multics", "NASA-1.3", "NCSA", "NGPL", "NOSL", "NPL-1.0", "NPL-1.1", "NPOSL-3.0", "NTP", "Naumen", "Nokia", "OCLC-2.0", "ODbL-1.0", "OFL-1.0", "OFL-1.1", "OFL-1.1-RFN", "OFL-1.1-no-RFN", "OGTSL", "OLDAP-2.3", "OLDAP-2.7", "OLDAP-2.8", "OSET-PL-2.1", "OSL-1.0", "OSL-1.1", "OSL-2.0", "OSL-2.1", "OSL-3.0", "OpenSSL", "PHP-3.0", "PHP-3.01", "PostgreSQL", "Python-2.0", "QPL-1.0", "RPL-1.1", "RPL-1.5", "RPSL-1.0", "RSCPL", "Ruby", "SGI-B-2.0", "SISSL", "SMLNJ", "SPL-1.0", "SimPL-2.0", "Sleepycat", "UCL-1.0", "UPL-1.0", "Unicode-DFS-2016", "Unlicense", "VSL-1.0", "Vim", "W3C", "WTFPL", "Watcom-1.0", "X11", "XFree86-1.1", "Xnet", "XSkat", "YPL-1.1", "ZPL-2.0", "ZPL-2.1", "Zend-2.0", "Zimbra-1.3", "Zlib", "gnuplot", "iMatix", "xinetd", "PublicDomain"]}
metadata.json
AuthorName
The name of the author, either full, abbreviated or pseudonym.
{"type": "string"}
metadata.json
AuthorEmail
The e-mail address of the author(s).
{"type": "string", "pattern": "^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,}$"}
metadata.json
AuthorWebSite
The website url of the author(s).
{}
metadata.json
WebSite
The URL for the application's web site.
{}
metadata.json
SourceCode
The URL to view or obtain the application's source code. This should be something human-friendly.
{}
metadata.json
IssueTracker
The URL for the application's issue tracker.
{}
metadata.json
Translation
The URL for the application's translation portal or at least a guide.
{}
metadata.json
Changelog
The URL for the application's changelog.
{}
metadata.json
Donate
The URL to donate to the project.
{}
metadata.json
FlattrID
The project's Flattr (https://flattr.com) ID.
{"type": "string", "pattern": "^[0-9a-z]+$"}
metadata.json
Liberapay
The project's Liberapay (https://liberapay.com) user or group name.
{"type": "string"}
metadata.json
OpenCollective
The project's OpenCollective (https://opencollective.com) user or group name.
{"type": "string"}
metadata.json
Bitcoin
A Bitcoin address for donating to the project.
{"type": "string", "pattern": "^(bc1|[13])[a-zA-HJ-NP-Z0-9]{25,39}$"}
metadata.json
Litecoin
A Litecoin address for donating to the project.
{"type": "string", "pattern": "^([LM3][a-km-zA-HJ-NP-Z1-9]{26,33}|ltc1[a-km-z0-9]{39})$"}
metadata.json
Name
The title of the application, with optional descriptive phrase.
{"type": "string"}
metadata.json
AutoName
The name of the application as can best be retrieved from the source code.
{"type": "string"}
metadata.json
Summary
DEPRECATED. A brief summary of what the application is. Should rather be provided via Fastlane.
{"type": "string", "maxLength": 80}
metadata.json
Description
DEPRECATED. A full description of the application, relevant to the latest version. Should rather be provided via Fastlane.
{"type": "string", "maxLength": 4000}
metadata.json
AllowedAPKSigningKeys
The lowercase hex value of the SHA-256 fingerprint of the signing certificate of an app. If an APK of that app is not signed by one of these keys, it will not be included in the repository.
{"anyOf": [{"type": "string", "pattern": "^[0-9a-f]{64}$"}, {"type": "array", "items": {"type": "string", "pattern": "^[0-9a-f]{64}$"}}]}
metadata.json
MaintainerNotes
This is a multi-line field using the same rules and syntax as the description. It's used to record notes for F-Droid maintainers to assist in maintaining and updating the application in the repository.
{"type": "string", "maxLength": 4000}
metadata.json
RepoType
The type of repository - for automatic building from source.
{"type": "string", "enum": ["git", "svn", "git-svn", "hg", "bzr", "srclib"]}
metadata.json
Repo
The repository location. Usually a git: or svn: URL, for example.
{"type": "string"}
metadata.json
Binaries
The location of binaries used in verification process.
{}
metadata.json
Builds
Any number of sub-entries can be present, each specifying a version to automatically build from source.
{"type": "array", "items": {"type": "object", "properties": {"versionName": {"type": "string"}, "versionCode": {"type": "integer"}, "commit": {"type": "string"}, "disable": {"type": "string"}, "subdir": {"type": "string"}, "submodules": {"const": true}, "sudo": {}, "timeout": {"type": "integer"}, "init": {}, "oldsdkloc": {"const": true}, "target": {"type": "string"}, "androidupdate": {"anyOf": [{"const": "auto"}, {"type": "array", "items": {"type": "string"}}]}, "encoding": {"type": "string"}, "forceversion": {"const": true}, "forcevercode": {"const": true}, "rm": {}, "extlibs": {}, "srclibs": {}, "patch": {}, "prebuild": {}, "scanignore": {}, "scandelete": {}, "build": {}, "postbuild": {}, "buildjni": {"anyOf": [{"type": "string", "enum": ["yes", "no"]}, {"type": "array", "items": {"type": "string"}}]}, "ndk": {"type": "string"}, "gradle": {"anyOf": [{"type": "array", "items": {"const": "yes"}, "maxItems": 1}, {"type": "array", "items": {"type": "string"}}]}, "maven": {"anyOf": [{"type": "string"}, {"type": "string", "enum": ["yes", "yes@"]}]}, "preassemble": {}, "gradleprops": {}, "antcommands": {}, "output": {"type": "string"}, "binary": {}, "novcheck": {"const": true}, "antifeatures": {}}, "required": ["versionName", "versionCode"], "additionalProperties": false}, "uniqueItems": true, "minItems": 1}
metadata.json
versionName
Specifies to build version xxx, which has a version code of yyy.
{"type": "string"}
metadata.json
versionCode
Specifies to build version xxx, which has a version code of yyy.
{"type": "integer"}
metadata.json
commit
The commit parameter specifies the tag, commit or revision number from which to build it in the source repository.
{"type": "string"}
metadata.json
disable
Disables this build, giving a reason why.
{"type": "string"}
metadata.json
subdir
Specifies to build from a subdirectory of the checked out source code. Normally this directory is changed to before building.
{"type": "string"}
metadata.json
submodules
Use if the project (git only) has submodules - causes git submodule update --init --recursive to be executed after the source is cloned.
{"const": true}
metadata.json
sudo
Specifies a script to be run using sudo bash -x -c "xxxx" in the Buildserver VM guest. This script is run with full root privileges, but the state will be reset after each build.
{}
metadata.json
timeout
Time limit for this build (in seconds). After time is up, Buildserver VM is forcefully terminated. The default is 7200 (2 hours); 0 means no limit.
{"type": "integer"}
metadata.json
init
Like 'prebuild', but runs on the source code BEFORE any other processing takes place.
{}
metadata.json
oldsdkloc
The sdk location in the repo is in an old format, or the build.xml is expecting such. The 'new' format is sdk.dir while the VERY OLD format is sdk-location.
{"const": true}
metadata.json
target
Specifies a particular SDK target for compilation, overriding the value defined in the code by upstream. This has different effects depending on what build system used — this flag currently affects Ant, Maven and Gradle projects only.
{"type": "string"}
metadata.json
androidupdate
By default, 'android update' is used in Ant builds to generate or update the project and all its referenced projects. Specifying update=no bypasses that. Note that this is useless in builds that don't use Ant.
{"anyOf": [{"const": "auto"}, {"type": "array", "items": {"type": "string"}}]}
metadata.json
encoding
Adds a java.encoding property to local.properties with the given value. Generally the value will be 'utf-8'.
{"type": "string"}
metadata.json
forceversion
If specified, the package version in AndroidManifest.xml is replaced with the version name for the build as specified in the metadata.
{"const": true}
metadata.json
forcevercode
If specified, the package version code in the AndroidManifest.xml is replaced with the version code for the build. See also forceversion.
{"const": true}
metadata.json
rm
Specifies the relative paths of files or directories to delete before the build is done.
{}
metadata.json
extlibs
List of external libraries (jar files) from the build/extlib library, which will be placed in the libs directory of the project.
{}
metadata.json
srclibs
Comma-separated list of source libraries or Android projects. Each item is of the form name@rev where name is the predefined source library name and rev is the revision or tag to use in the respective source control.
{}
metadata.json
patch
Apply patch(es). 'x' names one (or more - comma-separated) files within a directory below the metadata, with the same name as the metadata file but without the extension. Each of these patches is applied to the code in turn.
{}
metadata.json
prebuild
Specifies a shell command (or commands - chain with &&) to run before the build takes place.
{}
metadata.json
scanignore
Enables one or more files/paths to be excluded from the scan process. This should only be used where there is a very good reason, and probably accompanied by a comment explaining why it is necessary.
{}
metadata.json
scandelete
When running the scan process, any files that trigger errors - like binaries - will be removed. It acts just like scanignore, but instead of ignoring the files, it removes them.
{}