Permissions Schema
permissionValueType Simple Type
Permissions Schema : permissionValueType Simple Type

Glossary Item Box

Description

The permissions values.
Namespace (none)

Type

Restriction of xs:string

Diagram

permissionValueType Simple Type

Overview

permissionValueType Restriction of xs:string
The permissions values.

Facets

EnumerationYes
EnumerationNo
EnumerationOwnerOnly

Source

<xs:simpleType name="permissionValueType" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:annotation>
    <xs:documentation>
                The permissions values.
            </xs:documentation>
  </xs:annotation>
  <xs:restriction base="xs:string">
    <xs:enumeration value="Yes">
      <xs:annotation>
        <xs:documentation>
                    Any user can perform the action.
                </xs:documentation>
      </xs:annotation>
    </xs:enumeration>
    <xs:enumeration value="No">
      <xs:annotation>
        <xs:documentation>
                    The action is blocked for all users.
                </xs:documentation>
      </xs:annotation>
    </xs:enumeration>
    <xs:enumeration value="OwnerOnly">
      <xs:annotation>
        <xs:documentation>
                    Only the entity owner can perform the action.
                </xs:documentation>
      </xs:annotation>
    </xs:enumeration>
  </xs:restriction>
</xs:simpleType>

See Also