action atlassian_get_project_property_keys { label: "Get project property keys" description: "Returns all [project property](https://developer.atlassian.com/cloud/jira/platform/storing-data-without-a-database/#a-id-jira-entity-properties-a-jira-entity-properties) keys for the project.\n\nThis operation can be accessed anonymously.\n\n**[Permissions](#permissions) required:** *Browse Projects* [project permission](https://confluence.atlassian.com/x/yodKLg) for the project." provider: atlassian method: GET path: "/rest/api/3/project/{projectIdOrKey}/properties" encoding: json input: { type: "object" properties: { projectIdOrKey: { type: "string" } } required: ["projectIdOrKey"] additionalProperties: false } output: { type: "object" description: "List of property keys." properties: { keys: { type: "array" description: "Property key details." items: { type: "object" description: "Property key details." properties: { key: { type: "string" description: "The key of the property." } self: { type: "string" description: "The URL of the property." } } additionalProperties: false } } } additionalProperties: false } }