{"meta":{"title":"Lizenzen","intro":"Referenzdokumentation für GraphQL-Schematypen in der Kategorie \"Lizenzen\".","product":"GraphQL-API","breadcrumbs":[{"href":"/de/graphql","title":"GraphQL-API"},{"href":"/de/graphql/reference","title":"Verweis"},{"href":"/de/graphql/reference/licenses","title":"Lizenzen"}],"documentType":"article"},"body":"# Lizenzen\n\nReferenzdokumentation für GraphQL-Schematypen in der Kategorie \"Lizenzen\".\n\n## License - object\n\nA repository's open source license.\n\n**Implements:** Node\n\n### Fields for `License`\n\n* `body` (String!): The full text of the license.\n* `conditions` ([LicenseRule]!): The conditions set by the license.\n* `description` (String): A human-readable description of the license.\n* `featured` (Boolean!): Whether the license should be featured.\n* `hidden` (Boolean!): Whether the license should be displayed in license pickers.\n* `id` (ID!): The Node ID of the License object.\n* `implementation` (String): Instructions on how to implement the license.\n* `key` (String!): The lowercased SPDX ID of the license.\n* `limitations` ([LicenseRule]!): The limitations set by the license.\n* `name` (String!): The license full name specified by https://spdx.org/licenses.\n* `nickname` (String): Customary short name if applicable (e.g, GPLv3).\n* `permissions` ([LicenseRule]!): The permissions set by the license.\n* `pseudoLicense` (Boolean!): Whether the license is a pseudo-license placeholder (e.g., other, no-license).\n* `spdxId` (String): Short identifier specified by https://spdx.org/licenses.\n* `url` (URI): URL to the license on https://choosealicense.com.\n\n## license - query\n\nLook up an open source license by its key.\n\n**Type:** License\n\n### Arguments for `license`\n\n* `key` (String!): The license's downcased SPDX ID.\n\n## LicenseRule - object\n\nDescribes a License's conditions, permissions, and limitations.\n\n### Fields for `LicenseRule`\n\n* `description` (String!): A description of the rule.\n* `key` (String!): The machine-readable rule key.\n* `label` (String!): The human-readable rule label.\n\n## licenses - query\n\nReturn a list of known open source licenses.\n\n**Type:** [License]!"}